Hello,
I have a dashboard with several plots & Python callbacks which I embedded into a Notebook as shown in the notebook embed example.
As the dashboard got quite big, I would like to visualize it on a separate own tab instead of a notebook cell: is there any way to do that?
I have tried with output_file()
, but it doesn’t really work when visualizing an application,
Please note that I am not expecting my dashboard to work after I kill the notebook’s IPython kernel that generated it: I pretty much just would like it to visualize it in its own page instead of a notebook cell.
I understand that I could rewrite my dashboard as a script and use bokeh serve dashboard.py
, but I do a number of steps to fetch and prepare the data which work quite nice in the notebook and I would like to keep everything together in the same file, if possible.