我有一张如下图所示的条形图:
我想改变它,如下图所示:
有什么变化?
1-->-6
2--->-12
3--->-18
...
我让x-axis
negative
也将bars
更改为left of the diagram
而不是更正。
绘制此条形图的代码如下:
ax=dffinal.plot(kind='bar',x='6month', y='final-formula',color='b')
import matplotlib.pyplot as plt
ax2 = ax.twinx()
dffinal.plot(ax=ax2,x='6month', y='numPatients6month',title='CI-'+fs,visible=False)
plt.show()
有没有办法解决这个问题?
感谢您的时间:)