File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -462,7 +462,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
462
462
-i " pandas.io.stata.StataReader.variable_labels RT03,SA01" \
463
463
-i " pandas.io.stata.StataWriter.write_file SA01" \
464
464
-i " pandas.json_normalize RT03,SA01" \
465
- -i " pandas.merge_asof PR07,RT03" \
466
465
-i " pandas.period_range RT03,SA01" \
467
466
-i " pandas.plotting.andrews_curves RT03,SA01" \
468
467
-i " pandas.plotting.lag_plot RT03,SA01" \
Original file line number Diff line number Diff line change @@ -673,7 +673,9 @@ def merge_asof(
673
673
Parameters
674
674
----------
675
675
left : DataFrame or named Series
676
+ First pandas object to merge.
676
677
right : DataFrame or named Series
678
+ Second pandas object to merge.
677
679
on : label
678
680
Field name to join on. Must be found in both DataFrames.
679
681
The data MUST be ordered. Furthermore this must be a numeric column,
@@ -712,6 +714,7 @@ def merge_asof(
712
714
Returns
713
715
-------
714
716
DataFrame
717
+ A DataFrame of the two merged objects.
715
718
716
719
See Also
717
720
--------
You can’t perform that action at this time.
0 commit comments