Skip to content

DOC: Replaced "the the" with "the" #31500

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 1 commit into from
Jan 31, 2020
Merged
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
2 changes: 1 addition & 1 deletion pandas/_libs/groupby.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ def group_rank(float64_t[:, :] out,
# Update out only when there is a transition of values or labels.
# When a new value or group is encountered, go back #dups steps(
# the number of occurrence of current value) and assign the ranks
# based on the the starting index of the current group (grp_start)
# based on the starting index of the current group (grp_start)
# and the current index
if (i == N - 1 or
(masked_vals[_as[i]] != masked_vals[_as[i+1]]) or
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/arrays/interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,11 +729,11 @@ def _shallow_copy(self, left=None, right=None, closed=None):
Parameters
----------
left : array-like
Values to be used for the left-side of the the intervals.
Values to be used for the left-side of the intervals.
If None, the existing left and right values will be used.

right : array-like
Values to be used for the right-side of the the intervals.
Values to be used for the right-side of the intervals.
If None and left is IntervalArray-like, the left and right
of the IntervalArray-like will be used.

Expand Down
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2681,7 +2681,7 @@ def to_clipboard(
... # 0,1,2,3
... # 1,4,5,6

We can omit the the index by passing the keyword `index` and setting
We can omit the index by passing the keyword `index` and setting
it to false.

>>> df.to_clipboard(sep=',', index=False)
Expand Down
2 changes: 1 addition & 1 deletion pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1426,7 +1426,7 @@ def pie(self, **kwargs):
Examples
--------
In the example below we have a DataFrame with the information about
planet's mass and radius. We pass the the 'mass' column to the
planet's mass and radius. We pass the 'mass' column to the
pie function to get a pie plot.

.. plot::
Expand Down