matplotlib柱状图
Posted chen狗蛋儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib柱状图相关的知识,希望对你有一定的参考价值。
1 import numpy as np 2 import matplotlib.pyplot as plt 3 size = 5 4 a = np.random.random(size) 5 b = np.random.random(size) 6 c = np.random.random(size) 7 d = np.random.random(size) 8 x = np.arange(size) 9 10 total_width, n = 0.8, 3 # 有多少个类型,只需更改n即可 11 width = total_width / n 12 x = x - (total_width - width) / 2 13 14 plt.bar(x, a, width=width, label=\'a\') 15 plt.bar(x + width, b, width=width, label=\'b\') 16 plt.bar(x + 2 * width, c, width=width, label=\'c\') 17 plt.legend() 18 plt.show()
以上是关于matplotlib柱状图的主要内容,如果未能解决你的问题,请参考以下文章
100天精通Python(可视化篇)——第80天:matplotlib绘制不同种类炫酷柱状图代码实战(簇状堆积横向百分比3D柱状图)