我有一个“时间”列和另一个带有一些整数值的列,我们称之为“ int”列。时间格式为“ MM / DD / YYYY小时”,例如“ 01/01/2016 00”或“ 01/01/2016 13”
反正还有使用散点图绘制“ int”值与“时间”的关系吗?
谢谢
我尝试过matplotlib和seaborn
plt.scatter(df_br.Date, df_br.CO2)
sb.regplot(data=df_br,x="Date", y="CO2");
Seaborn错误:
ValueError: could not convert string to float: '01/01/2016 1401/01/2016 1501/01/2016 1601/01/2016 1701/01/2016 1801/01/2016 1901/01/2016 2001/01/2016 2101/01/2016 2201/01/2016 2301/02/2016 0001/02/2016 0101/02/2016 0201/02/2016 0301/02/2016 0401/02/2016 0501....
错误matplotlib: 需要很长时间才能运行(我还没有停止它,并且它正在运行!)