查找Python中所有行的单元格之间的相关性

时间:2018-09-16 21:12:19

标签: python pandas correlation

我要做什么。

我正在抓取一个网站并生成一个表,并将其导出到下面的数据框中。该代码在下面生成带有行索引的表,未显示。

我正在尝试使用代码SET DATEFIRST逐行查找“打开”和“卷”之间的相关性,但这不会产生任何输出,而只是产生下划线。

有人可以告诉我代码中的问题在哪里吗?

代码摘录

df[['Open','Volumes']].corr()

输出

df = pd.DataFrame({'Contracts' :Contracts,'Open':Opens, 'High':Highs, 'Low':Lows,'Last':Lasts,'Pct':Pcts,'Time':Times, 'Volumes' : Volumes, 'Previous Settled' : ps})

1 个答案:

答案 0 :(得分:0)

使用

    # refreshing the repositories
    sudo apt update
    # its wise to keep the system up to date!
    # you can skip the following line if you not
    # want to update all your software
    sudo apt upgrade
    # installing python 2.7 and pip for it
    sudo apt install python2.7 python-pip
    # installing python-pip for 3.6
    sudo apt install python3-pip

df['Open'] = pd.to_numeric(df['Open'], errors='coerce') df['Volumes'] = pd.to_numeric(df['Volumes'], errors='coerce') 中有字符串而不是数字,这就是为什么在木星中得到df作为输出的原因。