fig, ax = plt.subplots() ax.plot(x, y1, color="blue", label="y(x)") # 定义x, y, ... fig, ax = plt.subplots(figsize=(4, 3)) ax.errorbar(x, y2, yerr=y1, ...
確定! 回上一頁