import matplotlib.pyplot as plt
name_list = ['A', 'B', 'C', 'D'] # 数据a
num_list = [1.5, 0.6, 7.8, 6] # 数据a
name_list1 = ['A', 'B', 'C', 'D'] # 数据b
num_list1 = [0.5, 1.6, 4.8, 3] # 数据b
name_list2 = ['A', 'B', 'C', 'D'] # 数据c
num_list2 = [1.2, 2.1, 6.6, 5] # 数据c
x = list(range(len(name_list))) # 将name_list做成列表长度 x
totle_width, n = 0.4, 3 # 每个柱状图的宽度,一共两根柱状图
width = totle_width / n # 柱状图的间距总宽除以二
# x传入有几个柱状图 num_list传入柱状图的数据 width柱状图的宽度 label表名 fc颜色
plt.bar(x, num_list, width=width, label='a', fc='g')
# 将每个x的值加上柱状图的宽度
for i in range(len(x)):
x[i] = x[i] + width
# 再次传入x的值个柱状图 num_list1传入柱状图数据 width柱状图宽度 label表名 fc颜色
plt.bar(x, num_list1, width=width, label='b', fc='steelblue')
for i in range(len(x)):
x[i] = x[i] + width
plt.bar(x, num_list2, width=width, label='c', fc='orange')
plt.legend() # 重叠
plt.show()
Pyhthon-多种数据的柱状图
最新推荐文章于 2024-11-16 19:19:32 发布