Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 블로그
- python visualization
- SQL
- Linux
- Google Analytics
- 텐서플로
- 리눅스
- matplotlib
- MATLAB
- 한빛미디어서평단
- Blog
- Pandas
- 파이썬 시각화
- 티스토리
- 매틀랩
- 독후감
- 시각화
- 한빛미디어
- Python
- Tistory
- 파이썬
- Visualization
- MySQL
- 통계학
- tensorflow
- 딥러닝
- Ga
- 서평
- 서평단
- 월간결산
Archives
- Today
- Total
pbj0812의 코딩 일기
[PYTHON] pandas_profiling을 통한 EDA 본문
0. 목표
- pandas_profiling을 통한 jupyter notebook 에서의 EDA
1. 설치
pip install pandas-profiling
2. 실습
1) library 호출
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
2) 데이터 호출
- 타이타닉 데이터 사용
df = pd.read_csv("/Users/pbj0812/Desktop/titanic/train.csv")
3) 보고서 생성
profile = ProfileReport(df, title='Pandas Profiling Report', explorative=True)
4) 보여주기
profile.to_widgets()
- 결과
5) html 변환
profile.to_file("your_report.html")
- 결과
3. 참고
- github
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] plotly를 이용한 dengrogram 그리기 (0) | 2020.09.06 |
---|---|
[PYTHON] dataprep을 통한 EDA (0) | 2020.08.23 |
[PYTHON] handcalcs 라이브러리를 통한 수식 작성 (0) | 2020.08.21 |
[PYTHON] sweetviz를 통한 EDA (0) | 2020.08.19 |
[PYTHON] next, send, iter (0) | 2020.06.07 |
Comments