如果您发现自己定期执行此类操作,则可能值得研究matplotlib的面向对象的接口。在您的情况下:
import matplotlib.pyplot as pltimport numpy as npx = np.arange(5)y = np.exp(x)fig1, ax1 = plt.subplots()ax1.plot(x, y)ax1.set_title("Axis 1 title")ax1.set_xlabel("X-label for axis 1")z = np.sin(x)fig2, (ax2, ax3) = plt.subplots(nrows=2, ncols=1) # two axes on figureax2.plot(x, z)ax3.plot(x, -z)w = np.cos(x)ax1.plot(x, w) # can continue plotting on the first axis它稍微冗长一些,但是更容易跟踪,尤其是在几个具有多个子图的图形上。



