You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The python -m spinup.run plot exits for me without showing plots. This is due to matplotlib's interactive mode being turned on by default (from my matplotlibrc). I think the plot command assumes interactive mode is turned off so that plt.show is blocking. The fix is to add plt.ioff() to the plot.py script before plotting anything.
The text was updated successfully, but these errors were encountered:
The
python -m spinup.run plot
exits for me without showing plots. This is due tomatplotlib
's interactive mode being turned on by default (from mymatplotlibrc
). I think the plot command assumes interactive mode is turned off so thatplt.show
is blocking. The fix is to addplt.ioff()
to theplot.py
script before plotting anything.The text was updated successfully, but these errors were encountered: