用法:
Series.rmul(other, level=None, fill_value=None, axis=0)
获取数据帧或系列和其他元素的乘法(二元运算符
rmul
)。等效于
other * frame
,但支持用 fill_value 替换其中一个输入中的缺失数据。使用反向版本mul
。- other:标量、序列、系列或数据帧
任何单元素或多元素数据结构,或list-like 对象。
- axis:整数或字符串
系列仅支持
0
,数据帧支持1
或columns
- fill_value:浮点数或无,默认无
在计算之前使用此值填充现有的缺失 (NaN) 值以及成功对齐 DataFrame 所需的任何新元素。如果两个相应的 DataFrame 位置中的数据都丢失,则结果将丢失。
- DataFrame或Series
算术运算的结果。
参数:
返回:
例子:
DataFrame
>>> import cudf >>> df = cudf.DataFrame({'angles': [0, 3, 4], ... 'degrees': [360, 180, 360]}, ... index=['circle', 'triangle', 'rectangle']) >>> other = cudf.DataFrame({'angles': [0, 3, 4]}, ... index=['circle', 'triangle', 'rectangle']) >>> other * df angles degrees circle 0 <NA> triangle 9 <NA> rectangle 16 <NA> >>> df.rmul(other, fill_value=0) angles degrees circle 0 0 triangle 9 0 rectangle 16 0
Series
>>> import cudf >>> a = cudf.Series([10, 20, None, 30, 40], index=['a', 'b', 'c', 'd', 'e']) >>> a a 10 b 20 c <NA> d 30 e 40 dtype: int64 >>> b = cudf.Series([None, 1, 20, 5, 4], index=['a', 'b', 'd', 'e', 'f']) >>> b a <NA> b 1 d 20 e 5 f 4 dtype: int64 >>> a.rmul(b, fill_value=2) a 20 b 20 c <NA> d 600 e 200 f 8 dtype: int64
相关用法
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.rtruediv用法及代码示例
- Python cudf.Series.resample用法及代码示例
- Python cudf.Series.rolling用法及代码示例
- Python cudf.Series.replace用法及代码示例
- Python cudf.Series.rename用法及代码示例
- Python cudf.Series.rdiv用法及代码示例
- Python cudf.Series.reset_index用法及代码示例
- Python cudf.Series.round用法及代码示例
- Python cudf.Series.radd用法及代码示例
- Python cudf.Series.rsub用法及代码示例
- Python cudf.Series.rpow用法及代码示例
- Python cudf.Series.rfloordiv用法及代码示例
- Python cudf.Series.repeat用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.rmul。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。