Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
import matplotlib.pyplot as plt %matplotlib inline fig = plt.figure()
I should get a pop up empty graph with no value but nothing shows up in jupyter just the output:
<Figure size 432x288 with 0 Axes>
Why is there no graph showing up?
If you are in pylab mode in IPython, a new empty window should pop up.
Instead of %matplotlib inline, use %matplotlib notebook to have the output display within the notebook.
%matplotlib inline
%matplotlib notebook
import matplotlib.pyplot as plt %matplotlib notebook fig = plt.figure()
Add a comment
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
If you are in pylab mode in IPython, a new empty window should pop up.Is there a way to change this mode?