Robust Equilibration Detection
Project description
Robust Equilibration Detection
A Python package for detecting equilibration in time series where an initial transient is followed by a stationary distribution. Two main approaches are implemented, which differ in the way they account for autocorrelation:
detect_equilibration_init_seq
: This uses the initial sequence methods of Geyer (Geyer, 1992) to determine the truncation point of the sum of autocovariances. Chodera's method (Chodera, 2016) of simply truncating the autocovariance series at the first negative value is also implemented.detect_equilibration_window
: This uses window methods (see Geyer again) when calculating the autocorrelation. Setting the window size to 1 will give you White's original Marginal Standard Error Rule (White, 1997).
For both, the equilibration point can be determined either according to the minimum of the squared standard error (the default), or the maximum effective sample size, by specifying method="min_sse"
or method="max_ess"
.
Installation
The easiest way to install red
is using conda
(or mamba
):
conda install -c conda-forge red
Alternatively, you can install red
from the Python Package Index (PyPI) using pip
:
pip install red-molsim
Usage
Warning: red
will work with multi-run data, but has only been thoroughly tested with single-run data. Using multi-run data is likely to be more robust, but we have not verified this.
Equilibration Detection
import red
# Load your timeseries of interest.
# This should be a 2D numpy array with shape (n_runs, n_samples),
# or a 1D numpy array with shape (n_samples).
my_timeseries = ...
# Detect equilibration based on the minimum squared standard error using
# using the window method with a Bartlett kernel with a window size of
# round(n_samples**0.5) to account for autocorrelation. idx is the index
# of the first sample after equilibration, g is the statistical
# inefficiency of the equilibrated sample, and ess is the effective sample
# size of the equilibrated sample.
idx, g, ess = red.detect_equilibration_window(my_timeseries,
method="min_sse",
plot=True)
# Alternatively, use Geyer's initial convex sequence method to account
# for autocorrelation.
idx, g, ess = red.detect_equilibration_init_seq(my_timeseries,
method="min_sse",
plot=True)
# We can also determine equilibration in the same way as in
# pymbar.timeseries.detect_equilibration(my_timeseries, fast=False)
idx, g, ess = red.detect_equilibration_init_seq(my_timeseries,
method="max_ess",
sequence_estimator="positive")
Uncertainty Quantification
# Estimate the 95 % confidence interval, accounting for autocorrelation using Geyer's initial
# convex sequence method.
ci_95 = red.get_conf_int_init_seq(my_timeseries, alpha_two_tailed=0.05)
For more examples, see the documentation.
Copyright
Copyright (c) 2023, Finlay Clark
Acknowledgements
Project based on the Computational Molecular Science Python Cookiecutter version 1.1, with several ideas (Makefile, documentation) borrowed from Simon Boothroyd's super helpful python-template.
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
File details
Details for the file red_molsim-0.1.0.tar.gz
.
File metadata
- Download URL: red_molsim-0.1.0.tar.gz
- Upload date:
- Size: 150.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 861c58d36eed1b2de0784a8a59ebf59a9a0ac60ec83e1b5cfe20be70aed111a2 |
|
MD5 | dc67bae15022064a7e5dfaecc4ddcd74 |
|
BLAKE2b-256 | 364f75faad2aae4df0bd1e035738e68e04dbebe5279957baa17941cbc18ae19e |
File details
Details for the file red_molsim-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: red_molsim-0.1.0-py3-none-any.whl
- Upload date:
- Size: 151.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 504fc05339052f5227c354b5648687b1c3d8c60fa9e1ba967a49a4f11c661204 |
|
MD5 | f37c5820ff98d665acb4727e36498e3d |
|
BLAKE2b-256 | 1901394e86af3c0a0f72c76b7e02de3bbbdab21697a52166f486de8d7425d1c8 |