Skip to content

Commit 59bb3f4

Browse files
DOC: Update Series docs for Series.update (#59579)
DOC: Update Series docs pandas.Series.update
1 parent 2748365 commit 59bb3f4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
161161
-i "pandas.Series.str.zfill RT03" \
162162
-i "pandas.Series.struct.dtypes SA01" \
163163
-i "pandas.Series.to_markdown SA01" \
164-
-i "pandas.Series.update PR07,SA01" \
165164
-i "pandas.Timedelta.asm8 SA01" \
166165
-i "pandas.Timedelta.ceil SA01" \
167166
-i "pandas.Timedelta.components SA01" \

pandas/core/series.py

+7
Original file line numberDiff line numberDiff line change
@@ -3211,6 +3211,13 @@ def update(self, other: Series | Sequence | Mapping) -> None:
32113211
Parameters
32123212
----------
32133213
other : Series, or object coercible into Series
3214+
Other Series that provides values to update the current Series.
3215+
3216+
See Also
3217+
--------
3218+
Series.combine : Perform element-wise operation on two Series
3219+
using a given function.
3220+
Series.transform: Modify a Series using a function.
32143221
32153222
Examples
32163223
--------

0 commit comments

Comments
 (0)