我在python 2中运行以下代码,直接从这个站点获取:
http://matplotlib.org/examples/api/barchart_demo.html
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
N = 5
men_means = (20, 35, 30, 35, 27)
men_std = (2, 3, 4, 1, 2)
ind = np.arange(N) # the x locations for the groups
width = 0.35 # the width of the bars
fig, ax = plt.subplots()
rects1 = ax.bar(ind, men_means, width, color='r', yerr=men_std)
women_means = (25, 32, 34, 20, 25)
women_std = (3, 5, 2, 3, 3)
rects2 = ax.bar(ind + width, women_means, width, color='y', yerr=women_std)
# add some text for labels, title and axes ticks
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(ind + width / 2)
ax.set_xticklabels(('G1', 'G2', 'G3', 'G4', 'G5'))
ax.legend((rects1[0], rects2[0]), ('Men', 'Women'))
def autolabel(rects):
"""
Attach a text label above each bar displaying its height
"""
for rect in rects:
height = rect.get_height()
ax.text(rect.get_x() + rect.get_width()/2., 1.05*height,
'%d' % int(height),
ha='center', va='bottom')
autolabel(rects1)
autolabel(rects2)
plt.show()
奇怪的是,当显示对应于“G1”的第一个条显示触摸y轴的边缘,而不是它在网站上的显示方式。
我在其他条形图中遇到了同样的问题我正在努力了解如何将条形空间分开 - 基本上在任何一方都留有余量。
答案 0 :(得分:0)
您链接的示例适用于matplotlib 2.0版。但是你运行1.5或更低。因此,您需要参考以前版本的示例:barchart example for 1.5 或者,您可以将matplotlib更新为2.0版。
为了在边缘添加空间,您可以使用
plt.margins(x=0.05) or ax.margins(x=0.05)
任意数字作为您喜欢的轴长度的一部分。
或者,您可以设置轴的限制,例如
plt.xlim((0,N)) or ax.set_xlim((0,N))
其中N是条数。