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

DOC: Fix typos in merge_asof() docstring #15729

Merged
merged 1 commit into from
Mar 18, 2017
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 pandas/tools/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def merge_asof(left, right, on=None,
- A "nearest" search selects the row in the right DataFrame whose 'on'
key is closest in absolute distance to the left's key.

The default is "backward" and is the compatible in versions below 0.20.0.
The default is "backward" and is compatible in versions below 0.20.0.
The direction parameter was added in version 0.20.0 and introduces
"forward" and "nearest".

Expand Down Expand Up @@ -340,13 +340,13 @@ def merge_asof(left, right, on=None,

suffixes : 2-length sequence (tuple, list, ...)
Suffix to apply to overlapping column names in the left and right
side, respectively
side, respectively.
tolerance : integer or Timedelta, optional, default None
select asof tolerance within this range; must be compatible
to the merge index.
Select asof tolerance within this range; must be compatible
with the merge index.
allow_exact_matches : boolean, default True

- If True, allow matching the same 'on' value
- If True, allow matching with the same 'on' value
(i.e. less-than-or-equal-to / greater-than-or-equal-to)
- If False, don't match the same 'on' value
(i.e., stricly less-than / strictly greater-than)
Expand Down