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 | 31 |
Tags
- 한빛미디어서평단
- 파이썬
- 파이썬 시각화
- Ga
- 리눅스
- Pandas
- python visualization
- 텐서플로
- Python
- 서평
- Tistory
- 블로그
- 시각화
- MySQL
- 딥러닝
- Visualization
- Google Analytics
- MATLAB
- tensorflow
- matplotlib
- 서평단
- SQL
- Linux
- 월간결산
- 한빛미디어
- Blog
- 매틀랩
- 티스토리
- 독후감
- 통계학
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