demo-visual-vocabulary / pages /examples /magnitude_column.py
li-nguyen's picture
Copy over third batch version
42ee455
raw
history blame
540 Bytes
import vizro.models as vm
import vizro.plotly.express as px
from vizro import Vizro
gapminder = px.data.gapminder()
page = vm.Page(
title="Column",
components=[
vm.Graph(
figure=px.bar(
gapminder.query(
"year == 2007 and country.isin(['United States', 'Pakistan', 'India', 'China', 'Indonesia'])"
),
y="pop",
x="country",
)
)
],
)
dashboard = vm.Dashboard(pages=[page])
Vizro().build(dashboard).run()