Nothing
#' Integration-based CV%
#'
#' @param ... Arguments passed to moment()
#'
#' @return Percent CV
#' @export
#'
#' @examples
intcv <- function(...) {
mom1 <- moment(n=1,...)
mom2 <- moment(n=2,...)
100*sqrt( mom2/mom1^2 - 1 )
}
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.