Skip to content

Commit

Permalink
Update pandas-exercises-solutions.ipynb
Browse files Browse the repository at this point in the history
typos
  • Loading branch information
tiboine authored Mar 24, 2020
1 parent 5a71898 commit 88cc325
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Prandas Practice (solutions)\n",
"# Pandas Practice (solutions)\n",
"\n",
"This notebook offers a set of solutions to different tasks with pandas.\n",
"\n",
Expand Down Expand Up @@ -3397,7 +3397,7 @@
}
],
"source": [
"# Change the title of the Odometer (KM) to repsent miles instead of kilometers\n",
"# Change the title of the Odometer (KM) to represent miles instead of kilometers\n",
"car_sales = car_sales.rename(columns={\"Odometer (KM)\": \"Odometer (Miles)\"})\n",
"car_sales"
]
Expand All @@ -3408,7 +3408,7 @@
"source": [
"## Extensions\n",
"\n",
"For more exercises, check out the pandas documentation, partiuclarly the [10-minutes to pandas section](https://pandas.pydata.org/pandas-docs/stable/getting_started/10min.html). \n",
"For more exercises, check out the pandas documentation, particularly the [10-minutes to pandas section](https://pandas.pydata.org/pandas-docs/stable/getting_started/10min.html). \n",
"\n",
"One great exercise would be to retype out the entire section into a Jupyter Notebook of your own.\n",
"\n",
Expand Down

0 comments on commit 88cc325

Please sign in to comment.