Nothing
#' @rdname se_meanx
#' @export
se_sx <- function(x, na.rm = FALSE) {
if (na.rm) {
x <- x[!is.na(x)]
}
root_n <- sqrt(length(x))
x_bar <- mean(x)
sx <- stats::sd(x)
sqrt(mean((x - x_bar)^4) - sx^4) / (2 * root_n * sx)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.