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()

Hide code cell output

Upgrade to ydata-sdk

Improve your data and profiling with ydata-sdk, featuring data quality scoring, redundancy detection, outlier identification, text validation, and synthetic data generation.


  0%|          | 0/13 [00:00<?, ?it/s]


 15%|█▌        | 2/13 [00:00<00:00, 11.84it/s]

100%|██████████| 13/13 [00:00<00:00, 76.08it/s]