Seaborn Heatmap 옵션 참고.
https://seaborn.pydata.org/generated/seaborn.heatmap.html
결과.
코드.
import seaborn as sns
import matplotlib.pyplot as plt
sns.set(rc={'figure.figsize':(12,12)})
sns.heatmap(train_df.corr(), annot=True)
'Data Analysis > Python' 카테고리의 다른 글
[Pandas] DataFrame의 Rows와 Columns 출력 Limit 해제 (0) | 2021.08.13 |
---|---|
[Python] Jupyter Notebook에 가상환경(Virtualenv) 연결, 삭제하기 (0) | 2021.02.07 |
[Python] Dictionary의 Key와 Value 위치 변경 (0) | 2020.07.01 |
[Python] Dictionary 정렬하기 (0) | 2020.07.01 |
[Python] Flask 기본 웹 서버 구축 (0) | 2020.03.26 |