Skip to content
forked from dfm/acor

Estimate the autocorrelation time of time-series data very quickly

License

Notifications You must be signed in to change notification settings

lmoustakas/acor

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACOR

This is a direct port of a C++ routine by Jonathan Goodman (NYU) called ACOR that estimates the autocorrelation time of time series data very quickly.

Dan Foreman-Mackey (NYU) made a few surface changes to the interface in order to write a Python wrapper (with the permission of the original author).

Installation

Just run

pip install acor

with sudo if you need it.

Otherwise, download the source code as a tarball or clone the git repository from GitHub:

git clone https://github.com/dfm/acor.git

Then run

cd acor
python setup.py install

to compile and install the module acor in your Python path. The only dependency is NumPy (including the python-dev and python-numpy-dev packages which you might have to install separately on some systems).

Usage

Given some time series x, you can estimate the autocorrelation time (tau) using:

import acor
tau, mean, sigma = acor.acor(x)

References

About

Estimate the autocorrelation time of time-series data very quickly

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published