Maximize the cell size of Jupyter notebook

TL;DR

Put the following magic command (cell magic) in a cell and execute it.

%%javascript
IPython.OutputArea.auto_scroll_threshold = 9999;

Note: This is not line magic like % matplotlib inline and some errors will occur unless the executed cell is independent. See IPython Official Documentation for details.

  • % - All available line magic commands - check here
  • %% - All available cell magic commands - check here

Cf.

Yuma Uchiumi
Yuma Uchiumi
Management Consultant, Data Scientist
comments powered by Disqus

Related