Skip to content

Instantly share code, notes, and snippets.

@jainanchit51
Created April 29, 2018 10:45
Show Gist options
  • Save jainanchit51/17a5a313c2c9405c2e2efdbc4b38c65c to your computer and use it in GitHub Desktop.
Save jainanchit51/17a5a313c2c9405c2e2efdbc4b38c65c to your computer and use it in GitHub Desktop.
import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style=’ticks’, color_codes=True)
plt.figure(figsize=(14, 12))
sns.heatmap(dataframe.astype(float).corr(), linewidths=0.1, square=True, linecolor=’white’, annot=True)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment