Py.Cafe

maartenbreddels/

vizro-example-dashboard

Iris Dataset Visualization Demo using Vizro

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import vizro.plotly.express as px
from vizro import Vizro
import vizro.models as vm


df = px.data.iris()

page = vm.Page(
    title="My first dashboard",
    components=[
        vm.Graph(id="scatter_chart", figure=px.scatter(df, x="sepal_length", y="petal_width", color="species")),
        vm.Graph(id="hist_chart", figure=px.histogram(df, x="sepal_width", color="species")),
    ],
    controls=[
        vm.Filter(column="species", selector=vm.Dropdown(value=["ALL"])),
    ],
)


dashboard = vm.Dashboard(pages=[page])
app = Vizro().build(dashboard).dash
requirements.txt
1
2
3
dash
vizro>=0.1.18