#!/usr/bin/env python # coding: utf-8 # In[3]: import pandas as pd from pandas_profiling import ProfileReport # In[6]: # Load the data data = "PPP_data_150k_plus.csv" df = pd.read_csv(data) # Generate the report profile = ProfileReport(df, title="PPP Profile Report") profile