I\'ve recently started using sublimetext 2, however I noticed today that the plt.show() function doesn\'t seem to work when run within sublimetext.
plt.show()
If
I had a similar issue under Ubuntu. I was trying to plot a pandas DataFrame like this:
pandas
DataFrame
df = pandas.DataFrame([*range(5)]) df.plot()
But the plot did not show. Turns out you need to do plt.show(), as discussed here.