Is there a way to mark one data point in a different coloraturas from the other data points when working with a violin plot? Here is my code:
fig = px.violin(df, y="Age of respondent by country", x="Location", box=True, color="Location",
points='all'
)
fig.show()