Last active
March 15, 2021 17:36
-
-
Save oscar-defelice/4fbb8097eafb713ac605a95797e477fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
correlation_matrix = df.corr().round(2) | |
# annot = True to print the values inside the square | |
sns.heatmap(data=correlation_matrix, annot=True); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment