fig, axes = plt.subplots(figsize=(16,9))
axes.set_xlabel('x label')
axes.set_ylabel('y label')
axes.set_title('title')
axes.plot(x, x**2)
axes.plot(x, x**3)
axes.legend(["y = x**2", "y = x**3"], loc=2)
图例中的 `loc` 参数标记图例位置,`1,2,3,4` 依次代表:右上角、左上角、左下角,右下角;`0` 代表自适应.
fig, ax = plt.subplots(figsize=(12,6))
# 线宽
ax.plot(x, x+1, color="blue", linewidth=0.25)
ax.plot(x, x+2, color="blue", linewidth=0.50)
ax.plot(x, x+3, colo