streamlit 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 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
df = pd.read_excel('whatever.xlsx')
df = manipulation_1(df)
df.eda() # can use this at debug mode too!
df = manipulation_2(df)
df.eda() # yes, you can open multiple EDA windows!
df = manipulation_3(df)
df.eda()
sleep(600) # just that ending script will end the eda too, so delaying the exit
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.6.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce6a5b9db9ea58b56d85f1aebb831311f1d2e860dfeb1dbf2d4e2e3c92b2fccc |
|
MD5 | 11785c4b19b8904edbeb721d76140cea |
|
BLAKE2b-256 | 0c92f99065da695800f609d7841ad9344dd6a298fab095a4d0ccf619692ed498 |