请问有什么方法可以绘制一条对角线,该对角线连接在平均值轴(UM消费者信心指数)和左轴(US GDP)上测得的变量的平均值? 下面是我使用的代码。
非常感谢
fig, ax1 = plt.subplots(figsize = (16,8))
ax2 = ax1.twinx()
ax1.plot(us_consumer_index['Index'])
ax2.plot(us_gdp.loc['1978-01-01':,:])
plt.title('Services PMI vs. Real GDP Growth 2008 - 2018')
plt.xlabel('Date')
ax1.set_xlabel('Date')
ax1.set_ylabel('UM Consumer sentiment Index')
ax2.set_ylabel('% GDP Grwoth')
ax1.legend()
ax2.legend(loc = 2)