我想配置y軸以使值更易於解釋。 將兩個y軸刻度添加到同一個圖表
這是我試過的代碼:
ax = Statements.plot(x='Date', y='mean_Kincaid', legend=True,
title="Fed Statement Kincaid and Sentiment scores over time")
Statements.plot(x='Date', y='mean_Score', ax=ax)
Statements.plot(secondary_y='mean_Kincaid', style='g', ax=ax)
當運行:
ts = Statements.set_index('Date')
ts.mean_Kincaid.plot()
ts.mean_Score.plot(secondary_y=True)
我得到:
這與我的原始圖大不相同。這是什麼原因造成的,我該如何解決?
https://pandas.pydata.org/pandas-docs/stable/visualization.html#plotting -on-a-secondary-y-axis? – MaxU