Following is my code:
import seaborn as sns
df = sns.load_dataset('iris')
The following line gives me a normal violin plot of species vs sepal_length:
sns.violinplot(x = df['species'], y = df['sepal_length'])
The output looks as such
Now, I need to change the color of each plot, that's where I'm stuck Is there a way to do it by staying in seaborn violin_plot and not going into matplotlib or anything?