Analytic tool for Pandas DataFrame exploration
Project description
trash_pandas
analytic tool for pandas dataframe exploration
Trahs_pandas is an analytic tool designed for Pandas DataFrame exploration.
It deliver fast statistical insights about the data of every column such as type, NaN values, unique values, distribution, mean, median, quartiles, correlations... and render with graphs using only print statements, making it suitable for both notebook and shell usage.
It is intended to replace info() and describe().
See the code on this Github
Installation
pip install trash-pandas
usage
How to use?
from trash_pandas import explore
df = pandas.read_csv('file.csv')
explore(df)
yield option
It is possible to get a generator that display the result one column at a time.
from trash_pandas import explore
df = pandas.read_csv('file.csv')
gen = explore(df, generator=True)
next(gen)
...
I developed it initially for my own usage.
Mifour.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file trash_pandas-0.2.5.tar.gz
.
File metadata
- Download URL: trash_pandas-0.2.5.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff2791280c3f871a8a22273bd1fb755d4e460e7c0c97ec7d2fc6124ffc190528 |
|
MD5 | 54f7c95d111afd6f17224cab495fd736 |
|
BLAKE2b-256 | 6070574a5e2cd946eed0d8fc0f21f53a73e0f418ff57bf2dae9e7e51dba7c549 |