eland.Series.rmul#
- Series.rmul(left: Series) Series #
返回系列和左边的乘积,逐元素(二元运算符 mul)。
参数#
left: eland.Series
返回值#
eland.Series
示例#
>>> df = ed.DataFrame('http://localhost:9200', 'ecommerce').head(5) >>> df.taxful_total_price 0 36.98 1 53.98 2 199.98 3 174.98 4 80.98 Name: taxful_total_price, dtype: float64 >>> 10.0 * df.taxful_total_price 0 369.799995 1 539.799995 2 1999.799957 3 1749.799957 4 809.800034 Name: taxful_total_price, dtype: float64