Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 426 Bytes

jupyter.rst

File metadata and controls

17 lines (11 loc) · 426 Bytes

Using Jupyter

In order to display interactive animations in jupyter notebook or lab, use one of the following line magics:

%matplotlib notebook  # notebook only
%matplotlib ipympl  # notebook or lab
%matplotlib widget  # notebook or lab (equivalent to ipympl)

Or if you prefer matplotlib to display a figure in a native window:

%matplotlib qt