Spaces:
Running
Running
File size: 441 Bytes
42ee455 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import vizro.models as vm
import vizro.plotly.express as px
from vizro import Vizro
gapminder = px.data.gapminder()
page = vm.Page(
title="Choropleth",
components=[
vm.Graph(
figure=px.choropleth(
gapminder.query("year == 2007"), locations="iso_alpha", color="lifeExp", hover_name="country"
)
)
],
)
dashboard = vm.Dashboard(pages=[page])
Vizro().build(dashboard).run()
|