pandas: Profile DataFrame#
Package Import#
import pandas as pd
import numpy as np
Dataset Import#
The dataset used in this notebook is from Kaggle - Pokemon.
data = pd.read_csv('data/Pokemon.csv')
Profile a DataFrame#
from ydata_profiling import ProfileReport
report = ProfileReport(data)
report.to_notebook_iframe()