我正在抓取一个网站并生成一个表,并将其导出到下面的数据框中。该代码在下面生成带有行索引的表,未显示。
我正在尝试使用代码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})
答案 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
作为输出的原因。