Metadata-Version: 2.1
Name: trash_pandas
Version: 0.2.4
Summary: Analytic tool for Pandas DataFrame exploration
Home-page: https://github.com/Mifour/trash_pandas/archive/0.2.4.tar.gz
Author: Mifour
Author-email: mifour@yopmail.com
License: UNKNOWN
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](https://github.com/Mifour/trash_pandas)
        
        ### Installation  
        [Pypi link](https://pypi.org/project/trash-pandas/)
        ```bash
        pip install trash-pandas
        ```
        ---
        
        ### usage  
        How to use?
        ```python
        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. 
        
        ```python
        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.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3
Description-Content-Type: text/markdown
