Closed
Description
The label is incorrect because the data only concerns Oceania.
Source: https://plotly.com/python/bar-charts/
import plotly.express as px
df = px.data.gapminder().query("continent == 'Oceania'")
fig = px.bar(df, x='year', y='pop',
hover_data=['lifeExp', 'gdpPercap'], color='country',
labels={'pop':'population of Oceania'}, height=400)
fig.show()```