Skip to content

Instantly share code, notes, and snippets.

@tomasonjo
Last active May 25, 2022 11:42
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 tomasonjo/34b62c5c85f9e7403b5f35d89592036f to your computer and use it in GitHub Desktop.
Save tomasonjo/34b62c5c85f9e7403b5f35d89592036f to your computer and use it in GitHub Desktop.
plt.figure(figsize=(16, 6))
corr = df.corr()
sns.heatmap(corr,
xticklabels=corr.columns.values,
yticklabels=corr.columns.values,
cmap="Blues",
annot=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment