import sys
!{sys.executable} -m pip install pandas-profiling
import numpy as np
import pandas as pd
import pandas_profiling as pp
df = pd.DataFrame(
np.random.rand(100, 5),
columns=[‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
)
pfr = pp.ProfileReport(df)
pfr.to_file("./example.html")