코드로 분석하는 방법을 모르거나 시간이 없다면 간단히 ProfileReport 라이브러리를 이용하면 됩니다.
단계도 매우 간단합니다.
설치
pip install ydata-프로파일링
가져와서 사용하세요
import pandas as pd import numpy as np from ydata_profiling import ProfileReport df = pd.read_csv('data.csv') report = ProfileReport(df, title='Data analysis') report.to_file("Data_report.html")
'Data_report.html'로 저장됩니다.
이러한 내용은 자동으로 신고됩니다.
보고서를 빠르게 작성하는데 많은 도움이 되었습니다.
위 내용은 간단하게 분석하고 싶다면 ProfileReport를 이용하세요의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!