File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -14106,17 +14106,19 @@ def isin(
1410614106 values : iterable, Series, DataFrame or dict
1410714107 The result will only be true at a location if all the
1410814108 labels match.
14109+
1410914110 - If `values` is a Series, the index labels must match.
1411014111 - If `values` is a dict, the keys must be column names,
14111- which must match.
14112+ which must match.
1411214113 - If `values` is a DataFrame:
14114+
1411314115 * When ``ignore_index=False`` (default), both the index
14114- and column labels must match, and comparison is done
14115- elementwise.
14116+ and column labels must match, and comparison is done
14117+ elementwise.
1411614118 * When ``ignore_index=True``, only column labels must
14117- match. Each element in the DataFrame is compared
14118- against the set of values in the corresponding column
14119- of ``values``, ignoring row index alignment.
14119+ match. Each element in the DataFrame is compared
14120+ against the set of values in the corresponding column
14121+ of ``values``, ignoring row index alignment.
1412014122
1412114123 ignore_index : bool, default False
1412214124 *Only valid when `values` is a DataFrame.*
You can’t perform that action at this time.
0 commit comments