在matplotlib中保留x轴缩放

时间:2018-06-18 21:23:53

标签: pandas matplotlib customization visualization data-analysis

我有一张如下图所示的条形图:

enter image description here

我想改变它,如下图所示:

enter image description here

有什么变化?

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()

有没有办法解决这个问题?

感谢您的时间:)

0 个答案:

没有答案