R/isbetween.R

Defines functions isbetween

Documented in isbetween

isbetween <-
function(x, lower, upper){
  return(x >= as.integer(lower) & x <= as.integer(upper))
}

Try the CNOGpro package in your browser

Any scripts or data that you put into this service are public.

CNOGpro documentation built on May 2, 2019, 5:57 a.m.