File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 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
462462 -i " pandas.io.stata.StataReader.variable_labels RT03,SA01" \
463463 -i " pandas.io.stata.StataWriter.write_file SA01" \
464464 -i " pandas.json_normalize RT03,SA01" \
465- -i " pandas.merge_asof PR07,RT03" \
466465 -i " pandas.period_range RT03,SA01" \
467466 -i " pandas.plotting.andrews_curves RT03,SA01" \
468467 -i " pandas.plotting.lag_plot RT03,SA01" \
Original file line number Diff line number Diff line change @@ -673,7 +673,9 @@ def merge_asof(
673673 Parameters
674674 ----------
675675 left : DataFrame or named Series
676+ First pandas object to merge.
676677 right : DataFrame or named Series
678+ Second pandas object to merge.
677679 on : label
678680 Field name to join on. Must be found in both DataFrames.
679681 The data MUST be ordered. Furthermore this must be a numeric column,
@@ -712,6 +714,7 @@ def merge_asof(
712714 Returns
713715 -------
714716 DataFrame
717+ A DataFrame of the two merged objects.
715718
716719 See Also
717720 --------
You can’t perform that action at this time.
0 commit comments