calc_act_r | R Documentation |
Calculate the auto-correlation time using only R. Consider using calc_act instead, as it is orders of magnitude faster
calc_act_r(trace, sample_interval)
trace |
the values |
sample_interval |
the interval in timesteps between samples |
the auto correlation time
The original Java version of the algorithm was from Remco Bouckaert, ported to R and adapted by Richèl J.C. Bilderbeek
Java code can be found here: https://github.com/CompEvol/beast2/blob/9f040ed0357c4b946ea276a481a4c654ad4fff36/src/beast/core/util/ESS.java#L161 # nolint URLs can be long
trace <- sin(seq(from = 0.0, to = 2.0 * pi, length.out = 100))
calc_act_r(trace = trace, sample_interval = 1) # 38.18202
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.