R/is.formula.R

Defines functions is.formula

Documented in is.formula

#' Is the object a formula
#'
#' Checks if the object given is a formula notation.
#'
#' @param x and object.
#'
#' @keywords internal
#'
#' @export
is.formula <- function(x){
  inherits(x,"formula")
}
MichaelJMahometa/OnRampsR2 documentation built on Feb. 12, 2020, 12:32 a.m.