#' Calculate the quadratic mean
#'
#' @param x vector
#'
#' @return quadratic mean of vector
#'
#' @examples
#' x <- seq(0, 10)
#' quadMean(x)
#' @export
#'
quadMean <- function(x) {
sqrt(mean(x^2))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.