2つの異なる図(fig1とfig2)にまったく同じものをプロットするこの単純なコードがあります。ただし、行ax?.plot(x、y)を2回書き込む必要があります。1回はax1用、もう1回はax2用です。プロット式を1つだけにするにはどうすればよいですか(複数の冗長な式があると、より複雑なコードの問題の原因になる可能性があります)。ax1、ax2.plot(x、y)のようなもの...?
import numpy as np
import matplotlib.pyplot as plt
#Prepares the data
x = np.arange(5)
y = np.exp(x)
#plot fig1
fig1 = plt.figure()
ax1 = fig1.add_subplot(111)
#plot fig2
fig2 = plt.figure()
ax2 = fig2.add_subplot(111)
#adds the same fig2 plot on fig1
ax1.plot(x, y)
ax2.plot(x, y)
plt.show()