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
相關文章
相關標籤/搜索