View source: R/calc_stderr_mean.R
calc_stderr_mean | 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))
calc_stderr_mean(trace) # 0.4347425
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.