Python,从字典创建条形图并将它们并排放置

时间:2017-05-24 14:38:40

标签: python dictionary matplotlib graph

我正在从两个不同的词典中创建2个条形图。我想把我的阴谋并排放置。这是我如何用字典制作我的情节:

w = 0.3

GD = {'A173': 63.992, 'A174': 13.368, 'A172':20.499, 'A171': 2.139}

plt.bar(range(len(GD)), GD.values(), align='center', color='green',width= w) 
plt.xticks(range(len(GD)), GD.keys())

BD = {'A173': 60.251, 'A174': 18.410, 'A172': 19.246, 'A171': 2.092}

plt.bar(range(len(BD)), BD.values(), color='red',width=w)
plt.xticks(range(len(BD)), BD.keys())

plt.ylabel('Frequency')
plt.xlabel(expl)
plt.title(att)
plt.show()

这是我的输出:enter image description here

如何将我的阴谋并排放置?

0 个答案:

没有答案