gpt4 book ai didi

python - Pandas:两个数据帧的元素乘法

转载 作者:IT老高 更新时间:2023-10-28 21:15:36 25 4
gpt4 key购买 nike

我知道如何在两个 Pandas 数据帧之间进行逐个元素的乘法运算。但是,当两个数据框的尺寸不兼容时,事情会变得更加复杂。例如下面的 df * df2 很简单,但是 df * df3 是一个问题:

df = pd.DataFrame({'col1' : [1.0] * 5, 
'col2' : [2.0] * 5,
'col3' : [3.0] * 5 }, index = range(1,6),)
df2 = pd.DataFrame({'col1' : [10.0] * 5,
'col2' : [100.0] * 5,
'col3' : [1000.0] * 5 }, index = range(1,6),)
df3 = pd.DataFrame({'col1' : [0.1] * 5}, index = range(1,6),)

df.mul(df2, 1) # element by element multiplication no problems

df.mul(df3, 1) # df(row*col) is not equal to df3(row*col)
col1 col2 col3
1 0.1 NaN NaN
2 0.1 NaN NaN
3 0.1 NaN NaN
4 0.1 NaN NaN
5 0.1 NaN NaN

在上述情况下,如何将 df 的每一列与 df3.col1 相乘

我的尝试:我尝试复制 df3.col1 len(df.columns.values) 次来获得一个数据帧与 df 相同的维度:

df3 = pd.DataFrame([df3.col1 for n in range(len(df.columns.values)) ])
df3
1 2 3 4 5
col1 0.1 0.1 0.1 0.1 0.1
col1 0.1 0.1 0.1 0.1 0.1
col1 0.1 0.1 0.1 0.1 0.1

但这会创建一个尺寸为 3 * 5 的数据框,而我在 5*3 之后。我知道我可以使用 df3.T() 进行转置来获得我需要的东西,但我认为这不是最快的方法。

最佳答案

In [161]: pd.DataFrame(df.values*df2.values, columns=df.columns, index=df.index)
Out[161]:
col1 col2 col3
1 10 200 3000
2 10 200 3000
3 10 200 3000
4 10 200 3000
5 10 200 3000

关于python - Pandas:两个数据帧的元素乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21022865/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com