@@ -676,9 +676,9 @@ def merge_asof(
676676 """
677677 Perform a merge by key distance.
678678
679- This is similar to a left-join except that we match on nearest
680- key rather than equal keys. Both DataFrames must be first sorted by
681- the merge key in ascending order before calling this function.
679+ This is similar to a left-join except that we match on nearest
680+ key rather than equal keys. Both DataFrames must be first sorted by
681+ the merge key in ascending order before calling this function.
682682 Sorting by any additional 'by' grouping columns is not required.
683683
684684
@@ -703,14 +703,14 @@ def merge_asof(
703703 Second pandas object to merge.
704704 on : label
705705 Field name to join on. Must be found in both DataFrames.
706- The data MUST be in ascending order. Furthermore this must be
707- a numeric column, such as datetimelike, integer, or float. 'on'
706+ The data MUST be in ascending order. Furthermore this must be
707+ a numeric column, such as datetimelike, integer, or float. 'on'
708708 or 'left_on' / 'right_on' must be given.
709709 left_on : label
710- Field name to join on in left DataFrame. If specified, sort the left
710+ Field name to join on in left DataFrame. If specified, sort the left
711711 DataFrame by this column in ascending order before merging.
712712 right_on : label
713- Field name to join on in right DataFrame. If specified, sort the right
713+ Field name to join on in right DataFrame. If specified, sort the right
714714 DataFrame by this column in ascending order before merging.
715715 left_index : bool
716716 Use the index of the left DataFrame as the join key.
@@ -742,7 +742,7 @@ def merge_asof(
742742 Returns
743743 -------
744744 DataFrame
745- A DataFrame of the two merged objects, containing all rows from the
745+ A DataFrame of the two merged objects, containing all rows from the
746746 left DataFrame and the nearest matches from the right DataFrame.
747747
748748
0 commit comments