Skip to content

Commit b403f3c

Browse files
DOC: fix PR07,RT03 for pandas.merge_asof (#59044)
1 parent ee05885 commit b403f3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff 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" \

pandas/core/reshape/merge.py

+3
Original file line numberDiff line numberDiff 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
--------

0 commit comments

Comments
 (0)