# libraries & dataset
import seaborn as sns
import matplotlib.pyplot as plt
# set a grey background (use sns.set_theme() if seaborn version 0.11.0 or above)
sns.set(style="darkgrid")
df = sns.load_dataset('iris')
# Just switch x and y
sns.violinplot(y=df["species"], x=df["sepal_length"])
plt.show()
Contact & Edit
👋 This document is a work by Yan Holtz. You can contribute on github, send me a feedback on twitter or subscribe to the newsletter to know when new examples are published! 🔥
This page is just a jupyter notebook, you can edit it here. Please help me making this website better 🙏!