#' @keywords internal
#'
#' @note This is the function to calculate the jackknife standard error of pooled estimates.
#' `u` is the 'leave-one-out' statistic values whose SE is to be calculated.
.jackknife_se <- function(u) {
n <- length(u)
sqrt(((n - 1) / n) * sum((u - mean(u))^2))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.