Untitled
Anonymous
python
10/01/2024 4:38 PM
284 B
22
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