Skip to content

Commit 5536452

Browse files
Update pandas intro notebook (#40)
1 parent 089b961 commit 5536452

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

_solved/01-introduction-tabular-data.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@
10521052
"editable": true
10531053
},
10541054
"source": [
1055-
"Pandas provides a large set of **summary** functions that operate on different kinds of pandas objects (DataFrames, Series, Index) and produce single value. When applied to a DataFrame, the result is returned as a pandas Series (one value for each column). "
1055+
"Pandas provides a large set of **summary** functions that operate on different kinds of pandas objects (DataFrames, Series, Index) and produce a single value. When applied to a DataFrame, the result is returned as a pandas Series (one value for each column). "
10561056
]
10571057
},
10581058
{
@@ -2280,7 +2280,7 @@
22802280
"\\> | Greater than\n",
22812281
"\\>= | Greater than or equal\n",
22822282
"< | Lesser than\n",
2283-
"!= | Lesser than or equal\n",
2283+
"<= | Lesser than or equal\n",
22842284
"\n",
22852285
"and to combine multiple conditions:\n",
22862286
"\n",
@@ -2639,7 +2639,7 @@
26392639
"\n",
26402640
"**EXERCISE**:\n",
26412641
"\n",
2642-
"* What is the average popolation number of the districts?\n",
2642+
"* What is the average population number of the districts?\n",
26432643
"* And what is the median?\n",
26442644
"\n",
26452645
"<details>\n",
@@ -3324,7 +3324,7 @@
33243324
"\n",
33253325
"**EXERCISE**:\n",
33263326
"\n",
3327-
"* Select all rows for the districts of the 1st arrondissement.\n",
3327+
"* Select all rows for the districts of the 3rd arrondissement.\n",
33283328
"* For this subset, what is the total population of the arrondissement?\n",
33293329
" \n",
33303330
"</div>"
@@ -4209,7 +4209,7 @@
42094209
"editable": true
42104210
},
42114211
"source": [
4212-
"This is only an ultra short intro to matplotlib. In the course materials, you can find another notebook with some more details ([visualization_01_matplotlib.ipynb](visualization_01_matplotlib.ipynb#An-small-cheat-sheet-reference-for-some-common-elements))."
4212+
"This is only an ultra short intro to matplotlib. In the course materials, you can find another notebook with some more details ([visualization-01-matplotlib.ipynb](visualization_01_matplotlib.ipynb#An-small-cheat-sheet-reference-for-some-common-elements))."
42134213
]
42144214
},
42154215
{
@@ -4225,7 +4225,7 @@
42254225
"\n",
42264226
"Galleries are great to get inspiration, see the plot you want, and check the code how it is created:\n",
42274227
" \n",
4228-
"* [matplotlib gallery](http://matplotlib.org/gallery.html\") is an important resource to start from\n",
4228+
"* [matplotlib gallery](http://matplotlib.org/gallery.html) is an important resource to start from\n",
42294229
"* [seaborn gallery](https://seaborn.pydata.org/examples/index.html)\n",
42304230
"* The Python Graph Gallery (https://python-graph-gallery.com/)\n",
42314231
"\n",

0 commit comments

Comments
 (0)