I'm trying to override the default legend labels in px.bar. Am I doing this correctly?
import plotly.express as px
df = px.data.stocks(indexed=True)-1
px.bar(df, x=df.index, y=["GOOG","AAPL"],
labels={
"GOOG":"Google",
"AAPL":"Apple"
})