Is it possible to make a violin plot that encloses all individual data points (see magenta arrow)?
import plotly.express as px
df = px.data.tips()
fig = px.violin(df, y="total_bill", box=False, # draw box plot inside the violin
points='all', # can be 'outliers', or False
)
fig.show()
gives