导语:
本文主要介绍了关于python如何绘柱状图的相关知识,包括python柱形图,以及Python超多数据柱状图这些编程知识,希望对大家有参考作用。
使用Python中的matplotlib画基本的柱状图
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.8, bottom=None, **kwargs)
实际上,left、height、width、bottom这四个参数决定了圆柱体的位置和大小。默认情况下,left是列的中心位置(left值的含义可以通过align参数改变),即:
(left - width / 2, bottom)为左下角位置
(left + width / 2, bottom + height)为右上角位置
例如
import matplotlib.pyplot as plt
data = [5, 20, 15, 25, 10]
plt.bar([0.3, 1.7, 4, 6, 7], data, width=0.6, bottom=[10, 0, 5, 0, 5])
plt.show()
推荐学习《
》!
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中返回元素的位置09/03
- ♥ 如何在python中计算最大回撤09/02
- ♥ python2和3的语法区别12/14
- ♥ python3的isinstance函数的使用方法12/04
- ♥ python有辅助函数吗?01/10
- ♥ python3下如何使用输入功能11/24
内容反馈