matplotlib 中的柱状图

Posted liang715200

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib 中的柱状图相关的知识,希望对你有一定的参考价值。

技术图片

技术图片

 def drawBar():

  pyplot.bar(range(5),[100,200,300,400,400])

  pyplot.xticks(range(5),[‘A‘,‘B‘,‘C‘,‘D‘,‘E‘])

  #设置横坐标

       pyplot.xlabel(u‘横坐标文字说明‘)

  pyplot.ylabel(u‘纵坐标文字说明‘)

  pyplot.title(u‘标题文字说明‘)

  pyplot.show()

 

drawBar()

    

 

以上是关于matplotlib 中的柱状图的主要内容,如果未能解决你的问题,请参考以下文章

Python Matplotlib画图基础介绍

python matplotlib bar图怎么画出这样的区间

python matplotlib箱线图

matplotlib 中的柱状图

Matplotlib光速入门-从安装到常用实战

使用matplotlib中的bar函数绘制柱状图