#' Calculate Interquantile
#'
#' Calculate Interquantile Range
#' quantile(values,0.75)-quantile(values,0.25)
#' @param values The values for calculating the interquantile
#' @keywords quantile
#' @export
#' @examples
#' calculateInterquantile(5)
calculateInterquantile <- function(values) {
return(IQR(values))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.