Skip to content

Instantly share code, notes, and snippets.

@ishritam
Created October 9, 2019 08:16
Show Gist options
  • Save ishritam/03f470225cd1ae446feefa0a79eefc41 to your computer and use it in GitHub Desktop.
Save ishritam/03f470225cd1ae446feefa0a79eefc41 to your computer and use it in GitHub Desktop.
sns histogram
sns.FacetGrid(iris, hue="species", size=5) \
.map(sns.distplot, "petal_length") \
.add_legend();
plt.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment