Skip to content

DOC: Fix some typos #33550

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

Merged
merged 2 commits into from
Apr 14, 2020
Merged
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
10 changes: 5 additions & 5 deletions doc/source/getting_started/intro_tutorials/03_subset_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="card-body">
<p class="card-text">

This tutorial uses the titanic data set, stored as CSV. The data
This tutorial uses the Titanic data set, stored as CSV. The data
consists of the following data columns:

- PassengerId: Id of every passenger.
Expand Down Expand Up @@ -72,7 +72,7 @@ How do I select specific columns from a ``DataFrame``?
<ul class="task-bullet">
<li>

I’m interested in the age of the titanic passengers.
I’m interested in the age of the Titanic passengers.

.. ipython:: python

Expand Down Expand Up @@ -111,7 +111,7 @@ the number of rows is returned.
<ul class="task-bullet">
<li>

I’m interested in the age and sex of the titanic passengers.
I’m interested in the age and sex of the Titanic passengers.

.. ipython:: python

Expand Down Expand Up @@ -198,7 +198,7 @@ can be used to filter the ``DataFrame`` by putting it in between the
selection brackets ``[]``. Only rows for which the value is ``True``
will be selected.

We now from before that the original titanic ``DataFrame`` consists of
We know from before that the original Titanic ``DataFrame`` consists of
891 rows. Let’s have a look at the amount of rows which satisfy the
condition by checking the ``shape`` attribute of the resulting
``DataFrame`` ``above_35``:
Expand All @@ -212,7 +212,7 @@ condition by checking the ``shape`` attribute of the resulting
<ul class="task-bullet">
<li>

I’m interested in the titanic passengers from cabin class 2 and 3.
I’m interested in the Titanic passengers from cabin class 2 and 3.

.. ipython:: python

Expand Down