3.Python 学习系列--------Python 可视化实战条形图

import numpy as np import matplotlib.pyplot as plt N=5 y= [20,10,15,13,13] index = np.arange(N) pl = plt.bar(left=index,height=y,color='blue',width=0.8) plt.show() import numpy as np import matplotli
相关文章
相关标签/搜索