I'm using getdist
to plot some simulation results.
In jupyter
writing just this line
g = plots.getSubplotPlotter()
g.triangle_plot([samples, samples2], filled=True)
Python will show plots as we can see here.
Now if we want to write it in Python shell and run it with IDLE
, this does not produce any plot. plt.show()
does not work here.
How to instruct python or matplotlib to show the plots and save them?