2013-08-06 157 views
6

我繪製與多個列的熊貓數據幀如下:格式化大熊貓輔助y軸

fig, ax = py.subplots(figsize=(11.7, 8.3)) 
df.plot(ax=ax, secondary_y=[A]) 

我可以格式化以如下的命令初級y軸:

ax.yaxis.set_major_formatter(FormatStrFormatter('%d days')) 

我怎樣才能將輔助Y軸(顯示在右側的)應用格式?

回答