Front End Dashboard

Three questions:

  1. Does anyone know how I can have my code cells on the right and output on the left?
  2. Is there a way to hide all cells except a few?
  3. Is there a way to have one cell impact the content of another cell? Like by clicking button X in cell Z text Y takes over another cell’s Python.
  1. In JupyterLab 3.2 there is an experimental side-by-side mode that can be enabled from the command palette (for presentations/tutorials)
  2. You can use the collapser (a small blue bar to the left of the cell) to hide it (for presentations/tutorials)
  3. DAG Based notebooks? may be of your interest here, but if you just mean interaction between outputs ipywidgets can do that

But given that your goal is dashboarding I would recommend using viola instead: GitHub - voila-dashboards/voila: Voilà turns Jupyter notebooks into standalone web applications https://blog.jupyter.org/and-voilà-f6a2c08a4a93 GitHub - voila-dashboards/voila-gridstack: Dashboard template for Voilà based on GridStackJS

2 Likes

Thanks do much for your response!! I really do appreciate it

1 Like