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.

有帮助吗?

解决方案

You need to be using the matplotlib inline backend.

%matplotlib inline
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top