R/is.R

Defines functions is.funts

Documented in is.funts

#' Check if an object is of class 'funts'
#'
#' @param obj The object to check.
#' @return TRUE if the object is of class 'funts', FALSE otherwise.
#'
#' @examples
#' data("Callcenter")
#' is.funts(Callcenter)
#' @export
is.funts <- function(obj) {
  inherits(obj, "funts")
}

Try the Rfssa package in your browser

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

Rfssa documentation built on Oct. 27, 2023, 1:08 a.m.