Skip to content

Commit 23cfa0b

Browse files
reorder chapters
1 parent ec0fc2e commit 23cfa0b

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

book/_quarto.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ book:
3636
- 01_2_executing_code.ipynb
3737
- 02_types_data_structures.ipynb
3838
- 03_1_flow_control.ipynb
39-
- 03_2_error_handling.ipynb
4039
- 04_functions.ipynb
4140
# - 041_scope.ipynb
4241
- 05_comprehensions.ipynb
@@ -49,11 +48,12 @@ book:
4948
- 08_numpy.ipynb
5049
- 081_pandas.ipynb
5150
- 09_plotting.ipynb
52-
- 10_testing.ipynb
5351
- lab_explore_data.ipynb
5452
- 11_cli.ipynb
55-
- 13_tools.ipynb
53+
- 03_2_error_handling.ipynb
5654
- 051_oop.ipynb
55+
- 10_testing.ipynb
56+
- 13_tools.ipynb
5757
- notebook_workflow.ipynb
5858
- 999_glossary.ipynb
5959
- references.qmd

book/lab_explore_data.ipynb

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
"### Install `git-annex`\n",
3737
"The files with the actual data are not there, but we have the references to them so that we can pull them down.\n",
3838
"We will need the tool [git-annex tool](https://git-annex.branchable.com/install/).\n",
39-
"\n",
39+
"```bash\n",
40+
"uv tool install git-annex\n",
41+
"```\n",
4042
"\n",
4143
"### Pull the data\n",
4244
"Open a terminal inside `ds005420` and run:\n",
@@ -156,36 +158,20 @@
156158
"5) Adapt [this example](https://seaborn.pydata.org/examples/pointplot_anova.html) to plot a comparison between channels/subjects/time."
157159
]
158160
},
159-
{
160-
"cell_type": "code",
161-
"execution_count": null,
162-
"id": "14452053-710d-4c46-9d9a-ee075692ec7b",
163-
"metadata": {},
164-
"outputs": [],
165-
"source": []
166-
},
167-
{
168-
"cell_type": "code",
169-
"execution_count": null,
170-
"id": "ce196df5-f404-448a-88cd-1b164a2aafdf",
171-
"metadata": {},
172-
"outputs": [],
173-
"source": []
174-
},
175161
{
176162
"cell_type": "markdown",
177163
"id": "503eef31-86a5-41c9-8cd0-246ab18b4a2d",
178164
"metadata": {},
179165
"source": [
180166
"## Consolidate pipeline\n",
181167
"\n",
182-
"Let's consolidate our workflow into a pipeline.\n",
168+
"Let's consolidate our workflow into a pipeline to:\n",
183169
"\n",
184-
"- read and assert subfolders\n",
185-
"- clean column names\n",
186-
"- standarize values\n",
187-
"- plot correlations\n",
188-
"- run tests"
170+
"- Read and assert subfolders\n",
171+
"- Clean column names\n",
172+
"- Standarize values\n",
173+
"- Plot and save correlations\n",
174+
"- Run tests"
189175
]
190176
}
191177
],

0 commit comments

Comments
 (0)