如何在python

时间:2019-07-31 03:45:26

标签: python-3.7

我有两个形状如下的数据框df1 =(276,7)和df2 =(276,55)
我试图将df1的1列除以df2中的所有元素
,但出现错误,指出“ int”对象不可迭代

  

我尝试对数据帧使用numpy.div和.div函数,但是   没有给我所需的输出

data['res_data'] = data['x'].divide(y)
# here x is a column in dataframe data and y is another dataframe
# shape of x is (276,)  and that of y is (276,55)

我的输入数据帧仅由浮点数组成。

0 个答案:

没有答案