Seaborn créent une matrice de corrélation

import seaborn as sns
%matplotlib inline

# calculate the correlation matrix
corr = auto_df.corr()

# plot the heatmap
sns.heatmap(corr, 
        xticklabels=corr.columns,
        yticklabels=corr.columns)
Wojak's distant cousin