Nothing
#' Range of z-scores
#'
#' Compute the range of a vector of z-scores.
#'
#' @param x A numeric vector
#' @return A number.
#' @export
#' @examples
#' set.seed(1234);
#' x <- rnorm(
#' n = 10
#' );
#' zrange(
#' x = x
#' );
zrange <- function(x) {
if (all(is.na(x))) {
return(NA);
}
zrange <- max(x, na.rm = TRUE) - min(x, na.rm = TRUE);
zrange;
}
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.