我想用不同的轴绘制相同的mpl.pyplot.plot。我的代码如下所示:
import matplotlib.pyplot as plt
plt.subplot(211)
plot1 = plt.plot(data)
ax = plt.gca()
plt.axis('equal')
plt.grid()
plt.xlabel('x')
plt.ylabel('y')
:
much more stuff
:
plt.subplot(212)
command_to_plot(last_plot)
ax.set_xlim(a, b)
但不幸的是command_to_plot
不存在。那我怎么能这样做呢?