import numpy as np import matplotlib.pyplot as plt N = 5 men_means = (20, 35, 30, 35, 27) index = np.arange(N) plt.plot(index, men_means) #index 为X ...
確定! 回上一頁