Nothing
#' Float range
#'
#' Checks if a numeric variable is within a continuous float range.
#' @param variable Numeric variable.
#' @param min Minimum possible value.
#' @param max Maximum possible value.
#' @return No return value,only performs a check.
#' @export
add_float_range<- function(variable, min, max){
if(variable<min || variable > max){
stop(paste(variable, 'argument must be be between',min,'and',max))
}
}
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.