Skip to main content

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

Pypi link

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

trash_pandas-0.2.5.tar.gz (3.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page