fig, axes = plt.subplots(figsize=(12,3)) axes.plot(x, y, 'r') axes.set_xlabel('x') ... fig, ax = plt.subplots(figsize=(4,2)) ax.plot(x, x**2, ...
確定! 回上一頁