Untitled

 avatar
unknown
python
8 months ago
212 B
4
Indexable
ort seaborn as sns
import matplotlib.pyplot as plt

# Calculate correlation matrix
corr_matrix = dfremove.corr()

# Plot heatmap
sns.heatmap(corr_matrix, annot=True, cmap='coolwarm', fmt=".2f")
plt.show()
Editor is loading...
Leave a Comment