01. Example Notebook with Interactive Elements#
This example comes from here: https://jupyterbook.org/en/stable/interactive/interactive.html
import plotly.express as px
df = px.data.iris()
fig = px.scatter(
df, x="sepal_width", y="sepal_length", color="species", size="sepal_length"
)
fig