Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

Commit fef1383

Browse files
committed
Rel 5.0.1 - Updated maintenance script
1 parent 5edf483 commit fef1383

27 files changed

+1221
-37614
lines changed

notebooks/Chapter_00.jl

Lines changed: 0 additions & 1755 deletions
Large diffs are not rendered by default.

notebooks/Chapter_02.jl

Lines changed: 0 additions & 1919 deletions
Large diffs are not rendered by default.

notebooks/Chapter_03.jl

Lines changed: 0 additions & 1714 deletions
Large diffs are not rendered by default.

notebooks/Chapter_04_part_1.jl

Lines changed: 0 additions & 1895 deletions
Large diffs are not rendered by default.

notebooks/Chapter_04_part_2.jl

Lines changed: 0 additions & 1834 deletions
Large diffs are not rendered by default.

notebooks/Chapter_04_part_3.jl

Lines changed: 0 additions & 1834 deletions
Large diffs are not rendered by default.

notebooks/Chapter_05_1_Spurious_Associations.jl

Lines changed: 0 additions & 1879 deletions
Large diffs are not rendered by default.

notebooks/Chapter_05_2_MaskedRelationships.jl

Lines changed: 0 additions & 2298 deletions
This file was deleted.

notebooks/Chapter_05_2_Masked_Relationships.jl

Lines changed: 419 additions & 0 deletions
Large diffs are not rendered by default.

notebooks/Chapter_05_3_Categorical_Variables.jl

Lines changed: 0 additions & 1879 deletions
Large diffs are not rendered by default.

notebooks/Chapter_06.jl

Lines changed: 0 additions & 1872 deletions
Large diffs are not rendered by default.

notebooks/Chapter_07.jl

Lines changed: 0 additions & 1893 deletions
Large diffs are not rendered by default.

notebooks/Chapter_07_issues.jl

Lines changed: 0 additions & 1772 deletions
Large diffs are not rendered by default.

notebooks/Chapter_08.jl

Lines changed: 0 additions & 1829 deletions
Large diffs are not rendered by default.

notebooks/Chapter_09.jl

Lines changed: 0 additions & 1821 deletions
Large diffs are not rendered by default.

notebooks/Chapter_10.jl

Lines changed: 0 additions & 1221 deletions
Large diffs are not rendered by default.

notebooks/Chapter_11.jl

Lines changed: 0 additions & 1837 deletions
Large diffs are not rendered by default.

notebooks/Chapter_12.jl

Lines changed: 0 additions & 1839 deletions
Large diffs are not rendered by default.

notebooks/Chapter_13.jl

Lines changed: 0 additions & 1841 deletions
Large diffs are not rendered by default.

notebooks/Chapter_14.jl

Lines changed: 0 additions & 1877 deletions
Large diffs are not rendered by default.

notebooks/DataFramesPlayground.jl renamed to notebooks/Maintenance/Notebook-to-reset-SR2TuringPluto-jl-notebooks backup 1.jl

Lines changed: 136 additions & 169 deletions
Large diffs are not rendered by default.
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
### A Pluto.jl notebook ###
2+
# v0.19.19
3+
4+
using Markdown
5+
using InteractiveUtils
6+
7+
# ╔═╡ 28f7bd2f-3208-4c61-ad19-63b11dd56d30
8+
using Pkg
9+
10+
# ╔═╡ 2846bc48-7972-49bc-8233-80c7ea3326e6
11+
begin
12+
using DataFrames
13+
using RegressionAndOtherStories: reset_selected_notebooks_in_notebooks_df!
14+
end
15+
16+
# ╔═╡ 970efecf-9ae7-4771-bff0-089202b1ff1e
17+
html"""
18+
<style>
19+
main {
20+
margin: 0 auto;
21+
max-width: 2000px;
22+
padding-left: max(160px, 0%);
23+
padding-right: max(160px, 30%);
24+
}
25+
</style>
26+
"""
27+
28+
# ╔═╡ d98a3a0a-947e-11ed-13a2-61b5b69b4df5
29+
notebook_files = [
30+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_00.jl",
31+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_02.jl",
32+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_03.jl",
33+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_04_part_1.jl",
34+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_04_part_2.jl",
35+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_04_part_3.jl",
36+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_05_1_Spurious_Associations.jl",
37+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_05_2_Masked_Relationships.jl",
38+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_05_3_Categorical_Variables.jl",
39+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_06.jl",
40+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_07.jl",
41+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_07_issues.jl",
42+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_08.jl",
43+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_09.jl",
44+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_10.jl",
45+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_11.jl",
46+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_12.jl",
47+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_13.jl",
48+
"~/.julia/dev/SR2TuringPluto/notebooks/Chapter_14.jl",
49+
"~/.julia/dev/SR2TuringPluto/notebooks/Playgrounds/DataFramesMiniLanguage.jl",
50+
"~/.julia/dev/SR2TuringPluto/notebooks/Playgrounds/DataFramesPlayground.jl",
51+
"~/.julia/dev/SR2TuringPluto/notebooks/Playgrounds/IteratorPlayground.jl",
52+
"~/.julia/dev/SR2TuringPluto/notebooks/Playgrounds/TuringGuide.jl",
53+
"~/.julia/dev/SR2TuringPluto/notebooks/Maintenance/Notebook-to-reset-SR2TuringPluto-jl-notebooks.jl"
54+
];
55+
56+
# ╔═╡ 0f10a758-e442-4cd8-88bc-d82d8de97ede
57+
notebooks_df = DataFrame(
58+
file = notebook_files,
59+
reset = repeat([false], length(notebook_files)),
60+
done = repeat([false], length(notebook_files))
61+
)
62+
63+
# ╔═╡ a4207232-61eb-4da7-8629-1bcc670ab524
64+
notebooks_df.reset .= true;
65+
66+
# ╔═╡ 722d4847-2458-4b23-b6a0-d1c321710a2a
67+
notebooks_df
68+
69+
# ╔═╡ 9d94bebb-fc41-482f-8759-cdf224ec71fb
70+
reset_selected_notebooks_in_notebooks_df!(notebooks_df)
71+
72+
# ╔═╡ 88720478-7f64-4852-8683-6be50793666a
73+
notebooks_df
74+
75+
# ╔═╡ Cell order:
76+
# ╠═28f7bd2f-3208-4c61-ad19-63b11dd56d30
77+
# ╠═2846bc48-7972-49bc-8233-80c7ea3326e6
78+
# ╠═970efecf-9ae7-4771-bff0-089202b1ff1e
79+
# ╠═d98a3a0a-947e-11ed-13a2-61b5b69b4df5
80+
# ╠═0f10a758-e442-4cd8-88bc-d82d8de97ede
81+
# ╠═a4207232-61eb-4da7-8629-1bcc670ab524
82+
# ╠═722d4847-2458-4b23-b6a0-d1c321710a2a
83+
# ╠═9d94bebb-fc41-482f-8759-cdf224ec71fb
84+
# ╠═88720478-7f64-4852-8683-6be50793666a

0 commit comments

Comments
 (0)