Advertisement
elena1234

correlation heatmap in Python

Sep 12th, 2023 (edited)
683
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | Source Code | 0 0
  1. plt.figure(figsize=(20,10))
  2. sns.set(font_scale=1.4)
  3. sns.heatmap(df.corr(), annot= True, cmap = "Reds")
  4.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement