Laporan Profil Pandas Python
profile = ProfileReport(df, title="Pandas Profiling Report")
Maxwell
profile = ProfileReport(df, title="Pandas Profiling Report")
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
df = pd.DataFrame(np.random.rand(100, 5), columns=["a", "b", "c", "d", "e"])