This is a very simple question If I have
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
# Some example data to display
x = np.linspace(0, 2 * np.pi, 400)
y = np.sin(x ** 2)
fig, axs = plt.subplots(4)
fig.suptitle('first')
axs[0].plot(x, y)
axs[1].plot(x, -y)
axs[2].plot(x,2*y)
axs[3].plot(x,-3*y)
fig_detail,axs_detail=plt.subplots()
axs_detail.set_title('second')
plt.show()
and I run it, the two windows appear one over the other. I can move them of course but is there a way that they don't appear like that? Can they appear one next to the other?