在系列索引

时间:2017-10-29 17:05:27

标签: pandas series multiplying

我有2个熊猫系列

系列1: 2016-01-31 10 2016-01-31 20 2016-03-31 30 2016-03-31 40

系列2: 2016-01-31 2 2016-03-31 3

我想将索引上的系列1和系列2匹配相乘:

答案 2016-01-31 20 2016-01-31 40 2016-03-31 90 2016-03-31 120

1 个答案:

答案 0 :(得分:1)

使用mul参数fill_value=1

s = s1.mul(s2, fill_value=1)
print (s)
2016-01-31     20
2016-01-31     40
2016-03-31     90
2016-03-31    120
dtype: int64