如何从pandas中的同一数据帧中乘以或除以两个系列?我很难找到例子。
答案 0 :(得分:0)
有很多例子,请参阅pandas documentation。在这种情况下,这是一个计算来自另外两个数据帧的第三列的示例。
df = pd.DataFrame({'one': [1,2,3,4], 'two': [4,3,2,1]})
df['three'] = df['one'] + df['two']
导致:
one two three
0 1 4 5
1 2 3 5
2 3 2 5
3 4 1 5