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.
Release files for trash-pandas 0.2.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| trash_pandas-0.2.5.tar.gz | 3.1 kB | Details |
Release files / trash_pandas-0.2.5.tar.gz
| Download URL | trash_pandas-0.2.5.tar.gz |
|---|---|
| Size | 3.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ff2791280c3f871a8a22273bd1fb755d4e460e7c0c97ec7d2fc6124ffc190528
|
|
BLAKE2b-256 checksum How to use checksums |
6070574a5e2cd946eed0d8fc0f21f53a73e0f418ff57bf2dae9e7e51dba7c549
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is 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
|