I have two figure window. One is defined
fig, ax = plt.subplots()
sctPlot = ax.scatter(data[:,0], data[:,1])
the other one is defined as:
resultWindow = figure(2, figsize=(8, 8))
So how can I set the absolute position of each figure so that when I run the code the two windows does not overlap with each other.
I tried resultWindow.get_manager.setPosition but it doesn't work.
Thanks