Metadata-Version: 1.1
Name: supersmoother
Version: 0.2
Summary: Python implementation of Friedman's Supersmoother
Home-page: http://github.com/jakevdp/supersmoother
Author: Jake VanderPlas
Author-email: jakevdp@uw.edu
License: BSD 3-clause
Download-URL: http://github.com/jakevdp/supersmoother
Description: Python SuperSmoother
        ====================
        
        This is an efficient implementation of Friedman's SuperSmoother [1]
        algorithm in pure Python. It makes use of [numpy](http://numpy.org)
        for fast numerical computation.
        
        Installation
        ------------
        Installation is simple: To install the released version, type
        ```
        $ pip install supersmoother
        ```
        To install the bleeding-edge source, download the source code from http://github.com/jakevdp/supersmoother and type:
        ```
        $ python setup.py install
        ```
        
        Example
        -------
        You can see an example of the code in action [on nbviewer](http://nbviewer.ipython.org/github/jakevdp/supersmoother/blob/master/examples/Supersmoother.ipynb)
        
        Testing
        -------
        This code has full unit tests implemented in [nose](https://nose.readthedocs.org/en/latest/). With ``nose`` installed, you can run the test suite using
        ```
        $ nosetests supersmoother
        ```
        
        [1]: Friedman, J. H. (1984) A variable span scatterplot smoother. Laboratory for Computational Statistics, Stanford University Technical Report No. 5. ([pdf](http://www.slac.stanford.edu/cgi-wrap/getdoc/slac-pub-3477.pdf))
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
