import matplotlib.pyplot as plt fig = plt.figure() ax = plt.gca() x = np.arange(5) y = np.random.rand(5) bars = ax.bar(x, y, color='grey', linewidth=4.0) ...
確定! 回上一頁