I would like to have increasingly transparent violins in a seaborn.violinplot. I tried the following:
import seaborn as sns
tips = sns.load_dataset("tips")
ax = sns.violinplot(x="day", y="total_bill", data=tips, color='r', alpha=[0.8, 0.6, 0.4, 0.2])
Which does not result in the desired output:

