Skip to content

Instantly share code, notes, and snippets.

@shubham-singh-ss
Created July 4, 2019 05:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shubham-singh-ss/220abddbe18c627028a05437a76134f2 to your computer and use it in GitHub Desktop.
Save shubham-singh-ss/220abddbe18c627028a05437a76134f2 to your computer and use it in GitHub Desktop.
import seaborn as sns
sns.set()
tips = sns.load_dataset("tips")
sns.relplot(x="total_bill", y="tip", col="time",
hue="smoker", style="smoker", size="size",
data=tips);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment