728x90

heatmap 사이즈가 작아서 크기 조절하는 방법.

 

import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(10,10))         # Sample figsize in inches
sns.heatmap(df1.iloc[:, 1:6:], annot=True, linewidths=.5, ax=ax)

728x90

'Python' 카테고리의 다른 글

excel 데이터 group by concatenate  (0) 2023.07.09
excel to json  (0) 2023.07.08
Resource punkt not found(or wordnet)  (0) 2023.06.21
파이썬 자동 화면 캡처  (0) 2023.06.05
파이썬 화면 픽셀 RGB 구하기  (0) 2023.06.05

+ Recent posts