movingaverage 2.00
Provides a moving average over a data set.
Module to compute the moving average of a list. For example:
from movingaverage import movingaverage print list(movingaverage([1,2,3,4,5,6], 3)) >>> [2,3,4,5]
- movingaverage(data, sample_size):
- Return the moving averages of the data, with a window size of sample_size. sample_size must be an integer greater than 0.
- Author: Sean Reifschneider
- Maintainer: Sean Reifschneider
- Home Page: https://github.com/linsomniac/python-movingaverage
- Download URL: https://github.com/downloads/linsomniac/python-movingaverage/python-movingaverage-2.00.tar.gz
- Keywords: moving average
- License: Public Domain
-
Categories
- Development Status :: 5 - Production/Stable
- Intended Audience :: Developers
- License :: Public Domain
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.3
- Programming Language :: Python :: 2.4
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Topic :: Database
- Package Index Owner: jafo
- DOAP record: movingaverage-2.00.xml
