Running estimates of moments
Project description
momentum
A trivial mini-package for computing the running univariate mean, variance, kurtosis and skew
- No dependencies ... not even numpy.
- No classes ... unless you want them.
- State is a dict, for trivial serialization.
- Tested against scipy, creme, statistics
For multivariate covariance updating, maybe see precise.
Install
pip install momentum
Usage: running mean, var
from momentum import var_init, var_update
from pprint import pprint
m = var_init()
for x in [5,3,2.4,1.0,5.0]:
m = var_update(m,x)
pprint(m)
Usage: running mean, var, kurtosis and skew
from momentum import kurtosis_init, kurtosis_update
m = kurtosis_init()
for x in [5,3,2.4,1.0,5.0]:
m = kurtosis_update(m,x)
pprint(m)
File an issue if you need more help using this.
Usage: running recency-weighted mean, var
from momentum import rvar_init, rvar_update
from pprint import pprint
m = rvar_init(rho=0.01,n=15)
for x in [5,3,2.4,1.0,5.0]:
m = rvar_update(m,x)
pprint(m)
This will switch from running variance to a weighted variance after 15 data points.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
momentum-0.2.5.tar.gz
(5.8 kB
view details)
Built Distribution
File details
Details for the file momentum-0.2.5.tar.gz
.
File metadata
- Download URL: momentum-0.2.5.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47918db2923e3dbba1ac825f7552ab057690577075eca91f5a094302ab3e6b51 |
|
MD5 | 8cfa299cb7adb7b00b090f64e6c4b06b |
|
BLAKE2b-256 | 4c4bc24b23d172fed85c6b40c6accfe1e2ea33540bc3113859cc3267fddaf530 |
File details
Details for the file momentum-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: momentum-0.2.5-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 662289190bb39c9e77bf6f3f155f4bb132536a8853b59def4809d9a4692377bf |
|
MD5 | 6ae70a0804e734bb5144180300006168 |
|
BLAKE2b-256 | dad9490219c04647c9ce539e69bade4265f036f0fa3292ff66839abdf43e3d67 |