Skip to content

Instantly share code, notes, and snippets.

@srang992
Created May 26, 2022 02:18
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 srang992/d5bb3661e0262dd8296c3115eb8ef539 to your computer and use it in GitHub Desktop.
Save srang992/d5bb3661e0262dd8296c3115eb8ef539 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(12,8))
corr = tel_data.corr()
mask = np.triu(np.ones_like(corr, dtype=bool))
sns.heatmap(corr, annot=True, mask=mask, cmap='viridis')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment