📜  相关图 python seaborn - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:35.478000             🧑  作者: Mango

代码示例2
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)