[matplotlib03]python中用matplotlib繪製條形圖

帶偏差線的條形圖 import matplotlib.pyplot as plt # 輸入數據 mean_values = [1, 2, 3] variance = [0.2, 0.4, 0.5] bar_labels = ['bar 1', 'bar 2', 'bar 3'] # 繪製圖形 x_pos = list(range(len(bar_labels))) plt.bar(x_po
相關文章
相關標籤/搜索