Exploratory Data Analysis app to display table and frequent values for each column
Project description
pandas EDA
Big Data? Machine Learning?
You work with your data -
Manipulating it, merging, pivot and more.
But what happened in between? Did you get a lot of nans? Maybe duplicated values?
You constantly need to check your data status,
But you cannot do values_counts, isna and all those stuffs every second...
pandas_eda is an Exploratory Data Analysis tool that will show you status and frequent values for each column!
You will be focused on what you have on the spot.
Demo is the best way to understand:
install:
pip install pandas_eda
usage:
import pandas as pd
import pandas_eda
from time import sleep
# dummy data
df = pd._testing.makeMixedDataFrame()
# or your data...
# df = pd.read_excel('whatever.xlsx')
# show original data
df.eda() # can use this at debug mode too!
# manipulation #1
df.A += 10
df.eda() # yes, you can open multiple EDA windows!
# manipulation #2
df.loc[df.B==1, 'A'] -= 30
df.eda()
sleep(600) # just that ending script will end the eda too, so delaying the exit. no need at jupyter
note:
If you're running on remote machine, the eda will be opened on the remote...
alternatives:
After starting this tool I've found 2 cool alternatives:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pandas_eda-0.7.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8fed8da440982bf8c078e7099e77fb3e37f396fd682996cc46eaf103c7f07f6 |
|
MD5 | 19c462656979bb29f723ea3df6c99c48 |
|
BLAKE2b-256 | c303b6a251cdc6d55f8b51fccbcfb432023a922c9ff20f66f4802af7223b5cfa |