|
| 1 | +# Patsy |
| 2 | + |
| 3 | +**Notice:** `patsy` is no longer under active development. As of August 2021, |
| 4 | +Matthew Wardrop (@matthewwardrop) and Tomás Capretto (@tomicapretto) have taken |
| 5 | +on responsibility from Nathaniel Smith (@njsmith) for keeping the lights on, but |
| 6 | +no new feature development is planned. The spiritual successor of this project |
| 7 | +is [Formulaic](https://github.com/matthewwardrop/formulaic), and we |
| 8 | +recommend those interested in new feature development contribute there. Those |
| 9 | +whose use-cases continue to be met by `patsy` can continue using this package |
| 10 | +with increased confidence that things will continue to work as is for the |
| 11 | +foreseeable future. |
| 12 | + |
| 13 | +--- |
| 14 | + |
| 15 | +Patsy is a Python library for describing statistical models |
| 16 | +(especially linear models, or models that have a linear component) and |
| 17 | +building design matrices. Patsy brings the convenience of [R](http://www.r-project.org/) "formulas" to Python. |
| 18 | + |
| 19 | +[](https://pypi.org/project/spec-classes/) |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | + |
| 25 | + |
| 26 | + |
| 27 | +- **Documentation:** <https://patsy.readthedocs.io/> |
| 28 | +- **Downloads:** <http://pypi.python.org/pypi/patsy/> |
| 29 | +- **Code and issues:** <https://github.com/pydata/patsy> |
| 30 | +- **Mailing list: ** <[email protected]> ( <http://groups.google.com/group/pydata>) |
| 31 | + |
| 32 | + |
| 33 | +## Dependencies |
| 34 | + |
| 35 | + * Python (2.6, 2.7, or 3.3+) |
| 36 | + * six |
| 37 | + * numpy |
| 38 | + * Optional: |
| 39 | + * nose: needed to run tests |
| 40 | + * scipy: needed for spline-related functions like ``bs`` |
| 41 | + |
| 42 | +## Installation |
| 43 | + ``pip install patsy`` (or, for traditionalists: ``python setup.py install``) |
| 44 | + |
| 45 | +## License |
| 46 | + |
| 47 | +2-clause BSD, see LICENSE.txt for details. |
0 commit comments