R/nolesser.R

Defines functions nolesser

Documented in nolesser

#' Compare the Differences with Critical Values
#'
#' @param obs a numeric, the observed difference.
#' @param cric a numeric, the critical values of maximum absolute differences.
#'
#'@export
nolesser <- function(obs, cric) {
    abs(obs) >= cric
}

Try the peramo package in your browser

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

peramo documentation built on May 31, 2023, 6:52 p.m.