plt.bar畫圖

import numpy as np import matplotlib.pyplot as plt # 數據 x = np.arange(4) Bj = [52, 55, 63, 53] Sh = [44, 66, 55, 41] bar_width = 0.3 # 繪圖 x 表示 從那裏開始 plt.bar(x, Bj, bar_width) plt.bar(x+bar_width, Sh,
相關文章
相關標籤/搜索