matplotlib笔记(柱形图)
Posted imageSet
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib笔记(柱形图)相关的知识,希望对你有一定的参考价值。
import matplotlib.pyplot as plt plt.bar(left=bar_position,height=bar_height,width=bar_width) #也可省略成plt.bar(bar_position,bar_height,bar_width) plt.show()
bar_position,bar_height均可设置成列表,以控制每个柱子的位置和高度。
tick_position = range(1,6)
ax.set_xticks(tick_position)
指定刻度的位置
plt.barh()可以得到横向的柱子,如图:
以上是关于matplotlib笔记(柱形图)的主要内容,如果未能解决你的问题,请参考以下文章
Python数据分析-matplotlib-matplotlib