R/new.pim.R

Defines functions new.pim

Documented in new.pim

#' Create an object of class pim
#' 
#' This function is the constructor for an object of class pim. It is nothing
#' but a placeholder for \code{new("pim", ...)}. This function is not exported.
#' 
#' @param ... Data to include in the new object. See \code{\link[methods]{new}}
#' 
#' @return an object of class \code{pim}. See \code{\link{pim-class}}
#' 
new.pim <- function(...){
  new("pim", ...)
}

Try the pim package in your browser

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

pim documentation built on May 2, 2019, 6:51 p.m.