demo-visual-vocabulary / pages /examples /magnitude_column.py
antonymilne's picture
Add pycafe link and plotly code (#1)
b699ae9 verified
raw
history blame contribute delete
221 Bytes
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, y="pop", x="country")