Skip to content

Instantly share code, notes, and snippets.

@sgsg704
Created September 9, 2021 14:25
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 sgsg704/ae56f2e8c82e35f8350cb18856d623e1 to your computer and use it in GitHub Desktop.
Save sgsg704/ae56f2e8c82e35f8350cb18856d623e1 to your computer and use it in GitHub Desktop.
#Examaning a corelation matrix of all the features
cmap = sns.diverging_palette(275,150, s=40, l=65, n=9)
corrmat = data.corr()
plt.subplots(figsize=(18,18))
sns.heatmap(corrmat,cmap= cmap,annot=True, square=True);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment