본문 바로가기

TIL

TIL 051723

plt.figure(figsize=(10, 7))
sns.countplot(train_df['label'])
plt.show()

실행 시 결과 plot 강의와 다름

 

 

countplot 검색

https://steadiness-193.tistory.com/192

 

Seaborn - 빈도 그래프 : countplot

 

steadiness-193.tistory.com

plt.figure(figsize=(7, 4))
sns.countplot(x='label', data=train_df)
plt.show()

 

 

'TIL' 카테고리의 다른 글

TIL 051923  (0) 2023.05.20
TIL 051823  (4) 2023.05.18
TIL 051623  (0) 2023.05.16
TIL 051523  (0) 2023.05.16
TIL 051223  (0) 2023.05.12