Make a violin plot with only points

Thank you @adamschroeder! We should definitely add an example about this function (I was not aware of it!). For example

import plotly.express as px
df = px.data.tips()
fig = px.strip(df, x='day', y='tip')
fig.show()