File size: 238 Bytes
42ee455
 
b699ae9
 
42ee455
 
b699ae9
1
2
3
4
5
6
7
8
import vizro.plotly.express as px

gapminder = px.data.gapminder().query(
    "year == 2007 and country.isin(['United States', 'Pakistan', 'India', 'China', 'Indonesia'])"
)

fig = px.bar(gapminder, x="pop", y="country", orientation="h")