Skip to content

Instantly share code, notes, and snippets.

View shiroimooon's full-sized avatar
🐻‍❄️

shiroimooon

🐻‍❄️
View GitHub Profile
@shiroimooon
shiroimooon / heatmaping.py
Last active January 19, 2022 10:15
#🐍 #Python #EDA #相関係数 #ヒートマップ #Correlation_Matrix
'''
seaborn でのヒートマップ描画
'''
# Correlation Matrix
fig, ax = plt.subplots(figsize=(30, 25))
mat = dt.corr('pearson')
mask = np.triu(np.ones_like(mat, dtype=bool))
cmap = sns.diverging_palette(230, 20, as_cmap=True)