Reactivity Plotter¶
This notebook now uses the single interactive Bokeh reactivity_plotter() API.
For one-off static figures, call the reactivity relations directly and use your
preferred plotting library.
In [1]:
Copied!
from pathlib import Path
import sys
from bokeh.io import output_notebook, show
root = Path.cwd().resolve()
while root != root.parent and not (root / "src").exists():
root = root.parent
sys.path.insert(0, str(root / "src"))
from fusdb.plotting import reactivity_plotter
output_notebook()
from pathlib import Path
import sys
from bokeh.io import output_notebook, show
root = Path.cwd().resolve()
while root != root.parent and not (root / "src").exists():
root = root.parent
sys.path.insert(0, str(root / "src"))
from fusdb.plotting import reactivity_plotter
output_notebook()
In [2]:
Copied!
show(reactivity_plotter(x_limits=(1.0, 5.0e2), y_limits=(1e-30, 1e-21)))
show(reactivity_plotter(x_limits=(1.0, 5.0e2), y_limits=(1e-30, 1e-21)))