我知道这篇文章无法复制,因为数据是我在本地读取的 CSV 格式,但如果有用,我可以将数据发布到 github 帐户。我试图首先找到相关性:ng = pd.read_csv('C:/Users/me/Desktop/ngDataBaseline.csv', index_col='Date', parse_dates=True)ng.head()这将返回两列: HDD ThermDate 2011-05-01 347 3,5062011-06-01 74 1,2372011-07-01 0 1392011-08-01 0 352011-09-01 154 170但是如果我做一个: ng['HDD'].corr(ng['Therm'])我收到一个关于 unsupported operand type(s) for /: 'str' and 'int'这对我来说没有意义,因为我认为它应该都是熊猫系列。如果我做一个print(type(ng['HDD']))Ipython 会输出<class 'pandas.core.series.Series'>与print(type(ng['Therm']))为什么一样,为什么我不能关联数据?
添加回答
举报
0/150
提交
取消