2017-09-07 49 views
0

所以,我有df數據:Datacursor沒有顯示在懸停日期時間在熊貓數據幀

         doc_count 
@timestamp          
2017-07-28         110884 

當我將它們顯示在圖形:

ax = dfAll.plot(kind = kind, figsize = (16, 8), ax=ax) 
datacursor(hover=True) 

和懸停成圖表值I可以看到X =數而不是我期望的日期。

當我試試這個:

ax = plt.plot(dfAll.index, dfAll['doc_count']) 

我可以看到日期我的x軸,但我不知道我怎麼可以自定義圖形(種類和figsize)

回答

0

相當於大熊貓matplotlib包裝器

ax = dfAll.plot(kind = kind, figsize = (16, 8)) 

將取決於什麼kind是。
對於kind = "line"

fig, ax = plt.subplots(figsize = (16, 8)) 
line, = plt.plot(dfAll.index, dfAll['doc_count']) 

對於kind = "bar"

fig, ax = plt.subplots(figsize = (16, 8)) 
bars = plt.bar(dfAll.index, dfAll['doc_count'])