Python-Matplotlib中的Barchart-如何更改X轴

时间:2019-02-14 13:35:03

标签: python matplotlib

一个简单的,可能是虚拟的问题,但我找不到答案:

如何在Matplotlib中调整条形图的X轴?

到目前为止,我的代码:

_ = matplotlib.pyplot.bar(names, value, color="blue")
_.axis([-11,11,0,1])

返回 -> AttributeError: 'BarContainer' object has no attribute 'axis'

2 个答案:

答案 0 :(得分:1)

您可以为此使用xlim!

https://matplotlib.org/api/_as_gen/matplotlib.pyplot.xlim.html

示例:

import matplotlib.pyplot as plt
plt.xlim(-11, 11)

答案 1 :(得分:1)

首先,使事情变得容易的一个好习惯是导入:

import matplotlib.pyplot as plt

然后您可以简单地

plt.bar(names, value, color="blue")
plt.xlim([-11,11])

plt.show()