Created
December 4, 2020 00:12
-
-
Save moyocoyani/832c57ad030400d79a74a55236217c04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import seaborn as sns | |
#Dataset | |
tips = sns.load_dataset("tips") | |
#Plot---------------- | |
#Canvas | |
fig,ax = plt.subplots(1,1,figsize=(13,7.5),dpi=100) | |
#Chart | |
sns.violinplot(x="day", y="total_bill", data=tips,ax=ax) | |
#Attributes | |
ax.set_axisbelow(True) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment