Metadata-Version: 1.2
Name: specification_curve
Version: 0.1.0
Summary: Specification Curve is a Python package that performs specification curve analysis.
Home-page: https://github.com/aeturrell/specification_curve
Author: Arthur Turrell
Author-email: a.turrell09@imperial.ac.uk
License: MIT license
Description: ===================
        Specification Curve
        ===================
        
        
        .. image:: https://img.shields.io/pypi/v/specification_curve.svg
                :target: https://pypi.python.org/pypi/specification_curve
        
        .. image:: https://img.shields.io/travis/aeturrell/specification_curve.svg
                :target: https://travis-ci.com/aeturrell/specification_curve
        
        .. image:: https://readthedocs.org/projects/specification-curve/badge/?version=latest
                :target: https://specification-curve.readthedocs.io/en/latest/?badge=latest
                :alt: Documentation Status
        
        
        
        
        Specification Curve is a Python package that performs specification curve analysis.
        
        
        * Free software: MIT license
        * Documentation: https://specification-curve.readthedocs.io.
        
        Quickstart
        ----------
        
        .. code-block:: python
        
           from specification_curve import specification_curve as sc
           import numpy as np
           n_samples = 100
           x_1 = np.random.random(size=n_samples)
           x_2 = np.random.random(size=n_samples)
           x_3 = np.random.random(size=n_samples)
           x_4 = np.random.randint(2, size=n_samples)
           y = (0.8*x_1 + 0.1*x_2 + 0.5*x_3 + x_4*0.6 +
                   + 2*np.random.randn(n_samples))
           
           df = pd.DataFrame([x_1, x_2, x_3, x_4, y],
                             ['x_1', 'x_2', 'x_3', 'x_4', 'y']).T
           y_endog = 'y'
           x_exog = 'x_1'
           controls = ['x_2', 'x_3', 'x_4']
           # Set x_4 as a categorical variable
           df['x_4'] = df['x_4'].astype('category')
           
           df_r = sc.spec_curve(df, y_endog, x_exog, controls,
                                   cat_expand=['x_4'])
        
        Features
        --------
        
        * TODO
        
        Similar Packages
        ----------------
        
        In RStats, there is specr_ (which inspired many design choices in this package) and spec_chart_. Some of the example data in this package is the same as in specr_.
        
        .. _specr: https://github.com/masurp/specr
        .. _spec_chart: https://github.com/ArielOrtizBobea/spec_chart
        
        Credits
        -------
        
        This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
        
        
        =======
        History
        =======
        
        0.1.0 (2020-07-27)
        ------------------
        
        * First release on PyPI.
        
Keywords: specification_curve
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
