Matplotlib的概念这里就不多介绍了,关于绘图库Matplotlib的安装方法:点击这里
小编之前也和大家分享过python使用matplotlib实现的折线图和制饼图效果,感兴趣的朋友们也可以点击查看,下面来看看python使用matplotlib绘制柱状图的方法吧,具体如下:
1. 基本的柱状图
import matplotlib.pyplot as plt
data = [5, 20, 15, 25, 10]
plt.bar(range(len(data)), data)
plt.show()
plt.bar函数签名为:
bar(left, height, width=0.
1