@@ -198,15 +198,15 @@ def merge(
198198 to SQL left anti join; preserve key order.
199199 * right_anti: use only keys from right frame that are not in left frame, similar
200200 to SQL right anti join; preserve key order.
201- on : label or list
201+ on : Hashable or a sequence of the previous
202202 Column or index level names to join on. These must be found in both
203203 DataFrames. If `on` is None and not merging on indexes then this defaults
204204 to the intersection of the columns in both DataFrames.
205- left_on : label or list , or array-like
205+ left_on : Hashable or a sequence of the previous , or array-like
206206 Column or index level names to join on in the left DataFrame. Can also
207207 be an array or list of arrays of the length of the left DataFrame.
208208 These arrays are treated as if they are columns.
209- right_on : label or list , or array-like
209+ right_on : Hashable or a sequence of the previous , or array-like
210210 Column or index level names to join on in the right DataFrame. Can also
211211 be an array or list of arrays of the length of the right DataFrame.
212212 These arrays are treated as if they are columns.
@@ -536,13 +536,13 @@ def merge_ordered(
536536 First pandas object to merge.
537537 right : DataFrame or named Series
538538 Second pandas object to merge.
539- on : label or list
539+ on : Hashable or a sequence of the previous
540540 Field names to join on. Must be found in both DataFrames.
541- left_on : label or list , or array-like
541+ left_on : Hashable or a sequence of the previous , or array-like
542542 Field names to join on in left DataFrame. Can be a vector or list of
543543 vectors of the length of the DataFrame to use a particular vector as
544544 the join key instead of columns.
545- right_on : label or list , or array-like
545+ right_on : Hashable or a sequence of the previous , or array-like
546546 Field names to join on in right DataFrame or vector/list of vectors per
547547 left_on docs.
548548 left_by : column name or list of column names
0 commit comments