Skip to content

Commit 3a17d11

Browse files
authored
Update markers on solutions with small edits (#140)
1 parent 2516d06 commit 3a17d11

28 files changed

+285
-631
lines changed

_solved/case1_bike_count.ipynb

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"source": [
6060
"The data were previously available on the open data portal of the city, and we downloaded them in the `CSV` format, and provided the original file as `data/fietstellingencoupure.csv`.\n",
6161
"\n",
62-
"This data set contains the historical data of the bike counters, and consists of the following columns:\n",
62+
"This dataset contains the historical data of the bike counters, and consists of the following columns:\n",
6363
"\n",
6464
"- The first column `datum` is the date, in `dd/mm/yy` format\n",
6565
"- The second column `tijd` is the time of the day, in `hh:mm` format\n",
@@ -633,7 +633,7 @@
633633
"cell_type": "markdown",
634634
"metadata": {},
635635
"source": [
636-
"However, when we already know the format of the dates (and if this is consistent throughout the full data set), we can use this information to interpret the dates:"
636+
"However, when we already know the format of the dates (and if this is consistent throughout the full dataset), we can use this information to interpret the dates:"
637637
]
638638
},
639639
{
@@ -673,7 +673,7 @@
673673
"cell_type": "markdown",
674674
"metadata": {},
675675
"source": [
676-
"### Write the data set cleaning as a function\n",
676+
"### Write the dataset cleaning as a function\n",
677677
"\n",
678678
"In order to make it easier to reuse the code for the pre-processing we have implemented, let's convert the code to a Python function:"
679679
]
@@ -817,7 +817,7 @@
817817
"cell_type": "markdown",
818818
"metadata": {},
819819
"source": [
820-
"### Store our collected data set as an interim data product"
820+
"### Store our collected dataset as an interim data product"
821821
]
822822
},
823823
{
@@ -847,7 +847,7 @@
847847
"cell_type": "markdown",
848848
"metadata": {},
849849
"source": [
850-
"We now have a cleaned-up data set of the bike counts at Coupure Links in Ghent (Belgium). Next, we want to get an impression of the characteristics and properties of the data"
850+
"We now have a cleaned-up dataset of the bike counts at Coupure Links in Ghent (Belgium). Next, we want to get an impression of the characteristics and properties of the data"
851851
]
852852
},
853853
{
@@ -1549,11 +1549,8 @@
15491549
"cell_type": "code",
15501550
"execution_count": 32,
15511551
"metadata": {
1552-
"clear_cell": false,
1553-
"collapsed": false,
1554-
"jupyter": {
1555-
"outputs_hidden": false
1556-
}
1552+
"clear_cell": true,
1553+
"tags": []
15571554
},
15581555
"outputs": [
15591556
{
@@ -1813,7 +1810,7 @@
18131810
"\n",
18141811
"**EXERCISE**\n",
18151812
"\n",
1816-
"- Select a subset of the data set from 2013-12-31 12:00:00 until 2014-01-01 12:00:00 and assign the result to a new variable `newyear`\n",
1813+
"- Select a subset of the dataset from 2013-12-31 12:00:00 until 2014-01-01 12:00:00 and assign the result to a new variable `newyear`\n",
18171814
"- Plot the selected data `newyear`.\n",
18181815
"- Use a `rolling` function with a window of 10 values (check documentation of the function) to smooth the data of this period and make a plot of the smoothed version.\n",
18191816
"\n",

0 commit comments

Comments
 (0)