R/summary.createTable.R

Defines functions summary.createTable

Documented in summary.createTable

summary.createTable <-
function(object, ...) {
  if(!inherits(object, "createTable"))
    stop("'object' must be of class 'createTable'")
  if (inherits(object, "missingTable"))
    stop("summary cannot be applied to 'missingTable' objects")
  ans <- object
  class(ans) <- c("summary.createTable",class(ans))
  ans
}

Try the compareGroups package in your browser

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

compareGroups documentation built on Sept. 13, 2024, 5:07 p.m.