Reputation: 17934
I'm using IPython notebooks to share code and (hopefully) graphics with m collaborators. sadly, I cannot get matplotlib to plot inside the notebook, it always gives me a pop-up window, which I obviously cannot include in notebook pastes or similar.
Here's two minimal examples of how I go about plotting things.
Either with invoking plt.show()
, or without it.
this either gives me an external pop-up, or plots nothing.
Upvotes: 3
Views: 2379
Reputation: 42500
You need to be using the matplotlib inline backend.
%matplotlib inline
Upvotes: 11