Nothing
#' mmstat.range
#'
#' Computes a range from several R objects by union.
#'
#' @param ... R objects
#'
#' @return range
#' @export
#'
#' @examples
#' mmstat.range(-5:5, 0:10) # returns c(-5, 10)
mmstat.range <- function (...) {
ranges <- list(...)
isn <- sapply(ranges, is.numeric)
if (all(isn)) {
mins <- sapply(ranges, min)
maxs <- sapply(ranges, max)
} else {
mins <- maxs <- NA
}
return (c(min(mins), max(maxs)))
}
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.