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 中的柱状图的主要内容,如果未能解决你的问题,请参考以下文章