Nothing
#' Compute the sample standard deviation
#'
#' @param x Numeric vector
#' @param na.rm (logical) Should missing values be removed?
#' @examples
#' data(anchoring)
#' sample_sd(anchoring$everest_feet)
#' @export
sample_sd <- function(x, na.rm = FALSE) {
sqrt(sample_var(x,na.rm=na.rm))
}
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.