Skip to content

Instantly share code, notes, and snippets.

@Rahuls66
Created July 27, 2021 19:58
Show Gist options
  • Save Rahuls66/a682ee6dbdcd6cf54574fbd50d398fcd to your computer and use it in GitHub Desktop.
Save Rahuls66/a682ee6dbdcd6cf54574fbd50d398fcd to your computer and use it in GitHub Desktop.
import seaborn as sns
df = sns.load_dataset('mpg')
# df.head()
sns.catplot(data=df, x="cylinders", y="displacement", col = 'origin', hue = 'model_year');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment