Metadata-Version: 1.2
Name: tprojection
Version: 0.2.3
Summary: Visualize the relation between a dependent variable and a predictor in a meaningful way
Home-page: https://github.com/greghor/tprojection
Author: Gregoire Hornung
Author-email: greghor4@gmail.com
License: MIT license
Description: 
        tprojection
        ===========
        
        
        .. image:: https://badge.fury.io/py/tprojection.svg
           :target: https://badge.fury.io/py/tprojection
           :alt: PyPI version
        
        
        .. image:: https://travis-ci.com/greghor/tprojection.svg?branch=master
           :target: https://travis-ci.com/github/greghor/tprojection
           :alt: Build Status
        
        
        .. image:: https://img.shields.io/codecov/c/github/greghor/tprojection
           :target: https://img.shields.io/codecov/c/github/greghor/tprojection
           :alt: Code cov
        
        
        This library allows you to visually inspect the relation between a dependent variable (the
        target) and a predictor in a meaningful way. This library is particularly convenient when the
        target and/or the predictor are categorical, ie when it is difficult to compute a traditionnal correlation coefficient.
        And by the way, Tprojection stands for target projection.
        
        Installation
        ------------
        
        .. code-block::
        
           pip install tprojection
        
        
        Basic usage
        -----------
        
        .. code-block::
        
            from tprojection import Tprojection
        
            tproj = Tprojection(df, "target", "predictor")
            tproj.plot()
        
        
        Advanced usage
        --------------
        
        You can find several examples depicting more advanced functionalities in ``examples/examples.ipynb``
        
        Credits
        -------
        
        This package was created with `Cookiecutter <https://github.com/audreyr/cookiecutter>`_ and the `cookiecutter-pypackage <https://github.com/audreyr/cookiecutter-pypackage>`_ project template.
        
Keywords: tprojection
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
