如何校正x轴偏移?

时间:2019-04-09 19:03:27

标签: python matplotlib

enter image description here x轴向右移动,我不知道为什么也不怎么解决它?

plt.hist(df['# Payments Made'][my_vals],bins = 'auto')

x轴上的0应该与y轴上的0对齐。

2 个答案:

答案 0 :(得分:1)

尝试将x轴限制为0以上:

plt.xlim(left=0)

答案 1 :(得分:0)

类似的东西应该可以工作:

plt.xlim(0,)