10000 DOC:Remove hard-coded examples from _flex_doc_SERIES (#24589) by danielplawrence · Pull Request #25524 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC:Remove hard-coded examples from _flex_doc_SERIES (#24589) #25524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DOC:Add fill_value to example for SERIES.multiply() (#24589)
  • Loading branch information
danielplawrence committed Mar 4, 2019
commit 658ea82a3c6dcdd73744bb34b558e2b2c17aa9ce
8 changes: 4 additions & 4 deletions pandas/core/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,11 +453,11 @@ def _get_op_name(op, special):
d 1.0
e NaN
dtype: float64
>>> a.multiply(b)
>>> a.multiply(b, fill_value=0)
a 1.0
b NaN
c NaN
d NaN
b 0.0
c 0.0
d 0.0
e NaN
dtype: float64
"""
Expand Down
0