@@ -295,7 +295,7 @@ def merge_asof(left, right, on=None,
295
295
- A "nearest" search selects the row in the right DataFrame whose 'on'
296
296
key is closest in absolute distance to the left's key.
297
297
298
- The default is "backward" and is the compatible in versions below 0.20.0.
298
+ The default is "backward" and is compatible in versions below 0.20.0.
299
299
The direction parameter was added in version 0.20.0 and introduces
300
300
"forward" and "nearest".
301
301
@@ -340,13 +340,13 @@ def merge_asof(left, right, on=None,
340
340
341
341
suffixes : 2-length sequence (tuple, list, ...)
342
342
Suffix to apply to overlapping column names in the left and right
343
- side, respectively
343
+ side, respectively.
344
344
tolerance : integer or Timedelta, optional, default None
345
- select asof tolerance within this range; must be compatible
346
- to the merge index.
345
+ Select asof tolerance within this range; must be compatible
346
+ with the merge index.
347
347
allow_exact_matches : boolean, default True
348
348
349
- - If True, allow matching the same 'on' value
349
+ - If True, allow matching with the same 'on' value
350
350
(i.e. less-than-or-equal-to / greater-than-or-equal-to)
351
351
- If False, don't match the same 'on' value
352
352
(i.e., stricly less-than / strictly greater-than)
0 commit comments