Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

edit some typos #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions notebooks/2-data-analysis-in-python.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2158,7 +2158,7 @@
"as a way of retrieving summary statistics of a dataframe.\n",
"Together with glancing at the rows in the data frame and using `info()` method,\n",
"this is often a good place to start exploratory data analysis\n",
"as it gives a helpful overview of the numeric valuables the data set."
"as it gives a helpful overview of the numeric values in the data set."
]
},
{
Expand Down Expand Up @@ -2403,7 +2403,7 @@
"indicating whether it is `True` or `False`\n",
"that this row has a value above 83 in the column `life_expectancy`.\n",
"To find out how many observations there are matching this condition,\n",
"the `sum()` method can used\n",
"the `sum()` method can be used\n",
"since each `True` will be `1` and each `False` will be `0`."
]
},
Expand Down Expand Up @@ -4938,7 +4938,7 @@
"### Multiple aggregations on grouped data\n",
"\n",
"Since the same grouped dataframe will be used in multiple code chunks below,\n",
"we can assigned it to a new variable\n",
"we can assign it to a new variable\n",
"instead of typing out the grouping expression each time."
]
},
Expand Down Expand Up @@ -6872,7 +6872,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.1"
"version": "3.7.4"
},
"toc": {
"number_sections": false,
Expand Down
Loading