| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.Series.rmul.html | [Back] [Original] |
Section Navigation
Return multiplication of Series and other, element-wise (binary operator mul).
Equivalent to series * others, but with support to substitute a
fill_value for missing data in either one of the inputs.
Examples:
>>> a = bpd.Series([1, 1, 1, np.nan], index=['a', 'b', 'c', 'd'])
>>> a
a 1.0
b 1.0
c 1.0
d <NA>
dtype: Float64
>>> b = bpd.Series([1, np.nan, 1, np.nan], index=['a', 'b', 'd', 'e'])
>>> b
a 1.0
b <NA>
d 1.0
e <NA>
dtype: Float64
>>> a.multiply(b)
a 1.0
b <NA>
c <NA>
d <NA>
e <NA>
dtype: Float64
other (Series or scalar value)
The result of the operation.
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |