Skip to content

πŸ“ˆ πŸ“Š Methods for Exploring Pandas Data Frames

License

Notifications You must be signed in to change notification settings

alastairrushworth/inspectpd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

40 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

inspectpd

Overview

inspectpd is collection of utilities for columnwise summary, comparison and visualisation of pandas dataframes. The package patches in the following methods for pandas objects:

Installation and use

You can install inspectpd using pip with

pip install inspectpd

Simply import the package and use the methods on a pandas dataframe:

import pandas as pd
import inspectpd
# example data set just for illustration
from inspectpd import starwars

# categorical features summary
starwars.inspect_cat()

You can also get a quick visualisation of the summary too:

# get a plot of the categorical features
starwars.inspect_cat().view()