Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to DISABLE Jupyter notebook matplotlib plot inline?

Well, I know I can use %matplotlib inline to plot inline.

However, how to disable it?

Sometime I just want to zoom in the figure that I plotted. Which I can't do on a inline-figure.

like image 637
Jialin Zou Avatar asked Oct 04 '16 20:10

Jialin Zou


1 Answers

%matplotlib auto should switch to the default backend.

like image 71
gkcn Avatar answered Sep 29 '22 14:09

gkcn