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
- GIT
- MS-SQL
- node.js
- IOS
- mssql
- flutter
- Linux
- urllib
- swift
- tensorflow
- port
- ubuntu
- 라즈베리파이
- 맛집
- PyQt5
- 유니티
- 리눅스
- pandas
- 함수
- PyQt
- MySQL
- javascript
- PER
- 다이어트
- 날짜
- Unity
- python
- ASP
- sqlite
- Excel
Archives
아미(아름다운미소)
pandas_profiling (대규모 데이터 분석) 본문
import pandas as pd
from pandas_profiling import ProfileReport
# 1. 데이터프레임 준비 (예시)
df = pd.read_csv("your_data.csv")
# 2. 프로파일링 리포트 생성 → 가장 먼저 실행!
profile = ProfileReport(df, explorative=True)
# 3. (선택사항) 추가 설정 (예: 제목 변경, 변수 조정)
profile.set_variable("title", "My Custom Report")
# 4. 최종 저장 → 마지막에 실행!
profile.to_file("report.html")
from pandas_profiling import ProfileReport
profile = ProfileReport(df, explorative=True)
profile.to_file("report.html")
'랭귀지 > pandas' 카테고리의 다른 글
errors='coerce'로 NaT 변환 후 처리 (0) | 2025.04.01 |
---|---|
index.duplicated() 메서드 사용 (0) | 2025.03.31 |
메모리 사용량을 상세히 분석 (0) | 2025.03.28 |
df비교 (0) | 2025.03.27 |
데이터프레임의 메모리 사용량을 최적화하는 함수 (0) | 2025.03.27 |
Comments