728x90
반응형
Pandas-Profiling
- 방대한 양의 데이터를 가진 데이터프레임을 .profile_report()라는 단 한 줄의 명령으로 탐색하는 패키지
Github
github.com/pandas-profiling/pandas-profiling
Document
pandas-profiling.github.io/pandas-profiling/docs/master/rtd/
설치
# pip install
pip install pandas-profiling
# conda install
conda install -c conda-forge pandas-profiling
Pandas-Profiling 실습
import pandas as pd
import pandas_profiling
# 데이터 읽어오기
df = pd.read_csv('파일의 경로',encoding='utf-8')
# 리포트 생성하기
profile = ProfileReport(df, title="Pandas Profiling Report")
# 리포트 저장하기
profile.to_file('./pr_report.html')
References
728x90
반응형
'Python > Pandas' 카테고리의 다른 글
[Pandas] 데이터 정렬하기 (0) | 2022.04.26 |
---|---|
[Pandas] 데이터프레임 병합 (0) | 2022.04.26 |
[Pandas] 데이터프레임 연결 (0) | 2022.04.26 |
[Pandas] Pandas 개념 (0) | 2022.04.25 |
[Pandas] apply 함수, applymap 함수, map 함수 (0) | 2021.05.10 |