Getting started
Jupyter-flex allows you to create dashboards based on Jupyter Notebooks based on two simple concepts:
- Control the layout of the dashboard using markdown headers
- Define the dashboard components using Jupyter Notebook cell tags
Your first dashboard¶
Let's take a very simple Jupyter Notebook with 3 cells and one plot and convert it to a dashboard.
In [1]:
import plotly.express as px
In [2]:
df = px.data.iris()
In [3]:
fig = px.scatter(df, x="sepal_width", y="sepal_length")
fig.show()