Skip to content

Commit

Permalink
DOC: Update Series docs for Series.update (#59579)
Browse files Browse the repository at this point in the history
DOC: Update Series docs

pandas.Series.update
  • Loading branch information
awojno-bloomberg authored Aug 22, 2024
1 parent 2748365 commit 59bb3f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 0 additions & 1 deletion ci/code_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
-i "pandas.Series.str.zfill RT03" \
-i "pandas.Series.struct.dtypes SA01" \
-i "pandas.Series.to_markdown SA01" \
-i "pandas.Series.update PR07,SA01" \
-i "pandas.Timedelta.asm8 SA01" \
-i "pandas.Timedelta.ceil SA01" \
-i "pandas.Timedelta.components SA01" \
Expand Down
7 changes: 7 additions & 0 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3211,6 +3211,13 @@ def update(self, other: Series | Sequence | Mapping) -> None:
Parameters
----------
other : Series, or object coercible into Series
Other Series that provides values to update the current Series.
See Also
--------
Series.combine : Perform element-wise operation on two Series
using a given function.
Series.transform: Modify a Series using a function.
Examples
--------
Expand Down

0 comments on commit 59bb3f4

Please sign in to comment.