Seaborn의 히트맵 주석에 단위를 추가하려면 다음 단계를 수행할 수 있습니다. -
-
Figure 크기를 설정하고 서브플롯 사이와 주변의 패딩을 조정합니다.
-
numpy를 사용하여 5×5 차원 행렬을 만듭니다.
-
직사각형 데이터를 색상으로 인코딩된 행렬로 플로팅합니다.
-
히트맵 값에 %age 주석 달기 단위.
-
그림을 표시하려면 show()를 사용하세요. 방법.
예시
import matplotlib.pyplot as plt import seaborn as sns import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True data = np.random.rand(5, 5) ax = sns.heatmap(data, annot=True, fmt='.1f', square=1, linewidth=1.) for t in ax.texts: t.set_text(t.get_text() + " %") plt.show()
출력