Nothing
#' mmstat.pos
#'
#' Returns a linear interpolation based on \code{minmax}.
#'
#' @param minmax numeric(2): range to interpolate between
#' @param pos numeric: proportion(s) to interpolate, usually between zero and one
#'
#' @return interpolated values
#' @export
#'
#' @examples
#' mmstat.pos(c(0,360), 0.5)
mmstat.pos <- function (minmax, pos) {
min(minmax)+diff(minmax)*pos
}
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.