1
necomancer 2019-03-26 00:50:14 +08:00
df.set_index(pd.to_datetime(df[5])).plot()
或者 df2.index=pd.to_datetime(df[5]) 检查一下 dtype,你需要转换成时间,字符串不行的。 |
2
necomancer 2019-03-26 00:52:41 +08:00 1
或者 df = df.set_index(pd.to_datetime(df[5]))
再 df['ema'].plot() |
3
yellowtail OP @necomancer 已解决,谢谢
|