eland.Series.multiply

Series.multiply(right: eland.series.Series) → eland.series.Series

Return multiplication of series and right, element-wise (binary operator mul).

Parameters
right: eland.Series
Returns
eland.Series

Examples

>>> df = ed.DataFrame('localhost', '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
>>> df.total_quantity
0    2
1    2
2    2
3    2
4    2
Name: total_quantity, dtype: int64
>>> df.taxful_total_price * df.total_quantity
0     73.959999
1    107.959999
2    399.959991
3    349.959991
4    161.960007
dtype: float64