Nothing
#' @title Sample variance computation
#' @description Computes the sample variance of a vector of observations
#' @param x vector of observations
#' @return the sample variance
#' @export ssdd
#' @examples
#' x = rnorm(100,1,2)
#' ssdd(x)
ssdd <- function(x){
v <- sqrt(var(x)*(length(x)-1)/length(x))
return(v)
}
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.