用matplotlib绘制两次相同的图?

时间:2017-02-16 11:42:17

标签: matplotlib plot axes subplot

我想用不同的轴绘制相同的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不存在。那我怎么能这样做呢?

0 个答案:

没有答案