I have a code that prints four figures. I want to plot them into 2*2 surface(see example below) But the code is really complicated. I could not managed to do that with known subplots methods. That's why i thought it works if i assaign variables to figures and design subplot in the end
Here is the code that gives the design i want to :
plt.subplot(2, 2, 1)
plt.plot()#Figure 1
plt.subplot(2, 2, 2)
plt.plot()#Figure 2
plt.subplot(2, 2, 3)
plt.plot()#Figure 3
plt.subplot(2, 2, 4)
plt.plot()#Figure 4