Running estimates of moments
Project description
momentum
A mini-package for computing the running 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
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 forgettingvar_init, forgettingvar_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.1.2.tar.gz
(3.5 kB
view details)
Built Distribution
File details
Details for the file momentum-0.1.2.tar.gz
.
File metadata
- Download URL: momentum-0.1.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5b6447c113411a0f1f97af7d65c2cadfbac195f01590c419975c4922fe4b59a |
|
MD5 | 540610d564f715b0e1fef16a4d05f362 |
|
BLAKE2b-256 | 932657d86674c619d925654d19a95d62a83a42351522a9de6fccf1e224dc400d |
File details
Details for the file momentum-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: momentum-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 861187e800dcdbe8613c7062221a2321c664399b626a81e6f534583f08421fe4 |
|
MD5 | df1a9496c0b5e8711e16bc575e74729b |
|
BLAKE2b-256 | 50b0881440b275cc930c2dc2c0883df15ddc980c795e7d73b7c5eff78a6f8c99 |