سؤال

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