利用matplotlib.pyplot里面的bar函数绘制柱形图
语法格式如下:
bar(x,height,width,bottom,align,tick_label)
注:x表示柱形的x坐标值
height:表示柱形的高度
width:表示柱形的宽度
bottom:表示柱形底部的y坐标值
align:表示柱形的对齐方式,"center"表示柱形刻度线居中对齐,"edge"表示将柱形的左边与刻度线对齐
tick_label表示柱形对应的标签
示例:
import matplotlib.pyplot as plt
import numpy as np
#导入我们需要的包
x = np.arange(5)
y1 = np.array([10,8,7,11,13])
bar_width=0.3 #柱形的宽度
plt.bar(x,y1,tick_label=['a','b','c','d','e'],width= bar_width)
plt.show()
绘制多组柱形图
import matplotlib.pyplot as plt
import numpy as np
#导入我们需要的包
x = np.arange(5)
y1 = np.array([10,8,7,11,13])
y