calc_stderr_mean {tracerer} | R Documentation |
Calculate the standard error of the mean
calc_stderr_mean(trace)
trace |
the values |
the standard error of the mean
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/beast-dev/beast-mcmc/blob/800817772033c13061f026226e41128d21fd14f3/src/dr/inference/trace/TraceCorrelation.java#L159 # nolint URLs can be long
trace <- sin(seq(from = 0.0, to = 2.0 * pi, length.out = 100)) stderr_mean <- calc_stderr_mean(trace) testthat::expect_equal(stderr_mean, expected = 0.4347425, tolerance = 0.01)