How to add a mean line on a Strip plot

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()