R/generics.R

##' Generic for \code{signal}
##'
# The missingpreds method is here as an example of adding another generic to this file.  It doesn't have any relevance to Smisc
#
## @aliases missingpreds 
##' 
##' @usage signal(object, ...)
## missingpreds(object, ...)
##' 
##' @param object The object on which the generic operates
##' 
##' @param \dots Arguments passed to specific methods
##'
##' @rdname generics
##' 
##' @export
signal <- function (object, ...) {
  UseMethod("signal", object)
}

## @export
## missingpreds <- function (object, ...) {
##   UseMethod("missingpreds", object)
## }

Try the Smisc package in your browser

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

Smisc documentation built on May 2, 2019, 2:46 a.m.