Programming/Python
2023. 9. 5.
[Matplotlib] 히트맵(pcolor) 및 응용
# 히트맵 그리기 plt.pcolor(df, cmap='Blues') plt.colorbar() plt.pcolor(titanic_pivot) plt.colorbar() plt.xticks(np.arange(0.5,len(titanic_pivot.columns),1), labels=titanic_pivot.columns) plt.yticks(np.arange(0.5,len(titanic_pivot.index),1), labels=titanic_pivot.index) plt.show() heatmap(data=2차원데이터) cmap=컬러맵 : 컬러맵 지정 annot=True : 수치 표시 fmt='d' : 정수로 표시 sns.heatmap(titanic_pivot, cmap='Blues', annot=Tr..