Spaces:
Running
Running
File size: 598 Bytes
42ee455 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import vizro.models as vm
import vizro.plotly.express as px
from vizro import Vizro
gapminder = px.data.gapminder()
page = vm.Page(
title="Ordered bar",
components=[
vm.Graph(
figure=px.bar(
gapminder.query(
"year == 2007 and country.isin(['United States', 'Pakistan', 'India', 'China', 'Indonesia'])"
).sort_values("pop"),
x="pop",
y="country",
orientation="h",
)
)
],
)
dashboard = vm.Dashboard(pages=[page])
Vizro().build(dashboard).run()
|