demo-visual-vocabulary / pages /examples /connected_scatter.py
antonymilne's picture
Add pycafe link and plotly code (#1)
b699ae9 verified
raw
history blame contribute delete
162 Bytes
import vizro.plotly.express as px
gapminder = px.data.gapminder().query("country == 'Australia'")
fig = px.line(gapminder, x="year", y="lifeExp", markers=True)