Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- corr_matrix = listings_clean.corr(numeric_only = True)
- corr_matrix
- plt.figure(figsize=(12,8))
- sns.set(font_scale=1.4)
- sns.heatmap(titanic.corr(numeric_only=True), annot= True, cmap = "Reds")
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement