Is there any way how to add a mean “connect” line on the plot below?
import plotly.express as px
df = px.data.tips()
fig = px.strip(df, x=‘day’, y=‘tip’)
fig.show()
Is there any way how to add a mean “connect” line on the plot below?
import plotly.express as px
df = px.data.tips()
fig = px.strip(df, x=‘day’, y=‘tip’)
fig.show()