2
當我繪製大熊貓dataframe
與datetime
作爲索引,得到了一個NonGuiException
錯誤(使用IPython的筆記本):Matplotlib投擲錯誤時的日期時間作爲x軸
ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
ts.plot()
然而,如果我改變該指數爲整數,它的工作原理:
ts = pd.Series(np.random.randn(1000), index=range(1000))
ts = ts.cumsum()
ts.plot()
'cumsum'是否按預期爲'datetime'輸入工作?如果是這樣,那麼最終的整數是否可能太大? –