Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.12 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.12 KB

J1 Binder Repository

Configuration settings and all notebooks used by the J1 NBI Integration. The Binder repo is based on a configuration defined by environment.yml.

NOTE: This Binder repo is deprecated because the old version of the (old/origibal) Python module nbinteract v0.2.6 is used.

apt.txt

Added the base OS package for ffmeg to make it usable in Jupyter Notebooks for e.g matplotlib animations.

NB config

matplotlib animation

The method (of the animation instances) to manage the player is controlled by the animation rc parameter.

The rc parameter currently supports values of "none", "html5" and "jshtml".

  • none: no player (display) is shown
  • html5: use the native HTML5 player widget
  • jshtml: use the interactive JavaScript widget

The default is none to not display a player. To display the native HTML5 player, # set it to "html5". For the interactive JavaScript widget to "jshtml".

rc('animation', html='html5', embed_limit='256')
# rc('animation', html='jshtml', embed_limit='512')

NOTE: The JavaScript widgets referenced to jshtml does currently not work.