首页 > 代码库 > matplotlib 画图 条形图

matplotlib 画图 条形图

#绘制条形图
import numpy as np
import matplotlib.pyplot as plt
y=[]
plt.figure(1)
width=1
for i in range(len(y)):
    plt.figure(1)
    plt.bar(i*width,y[i],width)
plt.xlabel("X")
plt.ylabel("Y")
plt.show()
"""
bar后面的参数,第一个是设置每个柱子左边缘的横坐标,第二个是柱子的高度,第三个是柱子的宽度。
"""

matplotlib 画图 条形图