Robust and classical ACF/ACOVF estimation from periodogram and M-periodogram
Project description
acfmperiod
Python port of the original R package acfMPeriod for classical and robust
autocovariance/autocorrelation estimation using periodogram and M-periodogram
methods.
Features
- Univariate and multivariate ACF/ACOVF from periodogram (
PerACF) - Robust ACF/ACOVF from M-periodogram (
MPerACF) - Periodogram and cross-periodogram estimators
- Covariance/correlation matrix wrappers at lag 0 (
CovCorPer,CovCorMPer) - Plotting support for robust and classical outputs
Installation
pip install acfmperiod
For local development:
pip install -e .[dev]
Quick Start
import numpy as np
from acfmperiod import PerACF, MPerACF, CovCorPer
rng = np.random.default_rng(7)
x = rng.normal(size=(128, 2))
res = PerACF(x, lagmax=20, typevalue="correlation", doplot=False)
print(res.acf.shape) # (20, 2, 2)
rob = MPerACF(x, lagmax=20, doplot=False)
cov0 = CovCorPer(x, typevalue="covariance")
print(cov0)
API
PerioReg,MPerioRegCrossPeriodogram,MCrossPeriodogramPerACF,MPerACFCovCorPer,CovCorMPerplotrobacf
Lowercase aliases are available without underscore naming. ß
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file acfmperiod-0.1.0.tar.gz.
File metadata
- Download URL: acfmperiod-0.1.0.tar.gz
- Upload date:
- Size: 48.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c022b35658ed3eb18d3b18cfe3e3c88c3f2205d3c5be33aba43923b237219d1
|
|
| MD5 |
ad1a642bb0b149dab2c7b6a6963d0d71
|
|
| BLAKE2b-256 |
ea8ff591422ac335006fc1403bdf680f746abd161d7365991680d23bc76ede65
|
File details
Details for the file acfmperiod-0.1.0-py3-none-any.whl.
File metadata
- Download URL: acfmperiod-0.1.0-py3-none-any.whl
- Upload date:
- Size: 46.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb0be78dbc72a2d30fe8e55772abf303695be3cc28bae78ad6b21e147759938a
|
|
| MD5 |
9fc960c9f59a5997b4adf4aae93187a4
|
|
| BLAKE2b-256 |
e77a7e1d6d596d37724496d8a454c08207cb82f06f49cb9bed7cff0d83e6f2a4
|