MoonNote

EDA library 추천: pandas-profiling 본문

Study/Python

EDA library 추천: pandas-profiling

Kisung Moon 2021. 8. 20. 14:09

Installation

pip install pandas-profiling

사용법

-  데이터의 크기가 크다면 다음과 같은 방법으로 파일을 저장하는 것을 추천한다.

from pandas_profiling import ProfileReport
profile = ProfileReport(df, minimal=True)
# output.html 파일 생성
profile.to_file("output.html")

- output 파일이 생성된 것을 확인할 수 있다.

열어보면, 다음과 같이 데이터를 편리하게 확인할 수 있다.

'Study > Python' 카테고리의 다른 글

torch.sum( dim)  (0) 2021.09.14
주소  (0) 2021.09.09
pandas: 특정 조건의 row를 drop하기  (0) 2021.07.17
pandas: 조건 일치하는 dataframe 출력  (0) 2021.07.16
파이썬(Python)에서 모든 조합 구하기  (0) 2021.07.14