Note: Confirmed to work only in Windows environment (not confirmed on Mac and others)
#Graph generation
fig = plt.figure(figsize=(14, 7))
ax = fig.add_subplot(111, projection='3d')
#Display position / size setting here (described after graph generation)
mngr = plt.get_current_fig_manager()
mngr.window.setGeometry(100,200,640, 545)#(Distance from left, distance from above, width, height)
Recommended Posts