قراءة وحفط الداتاسيت في ملف html

PHOTO EMBED

Mon Apr 25 2022 17:55:26 GMT+0000 (Coordinated Universal Time)

Saved by @abdalrahmansh #python #pandas #datacleaning #machinelearning #pandas_profiling #save_to_html_file

from pandas_profiling import ProfileReport
import pandas as pd

test = pd.read_csv('../input/house-prices-advanced-regression-techniques/test.csv')
train = pd.read_csv('../input/house-prices-advanced-regression-techniques/train.csv')

profile = ProfileReport(train, title="train Pandas Profiling Report")
profile.to_file("train_report.html")
profile = ProfileReport(test, title="test Pandas Profiling Report")
profile.to_file("test_report.html")
content_copyCOPY