R/print.parameterDef.r

Defines functions print.parameterDef

Documented in print.parameterDef

#' Print a parameterDef Object in the console
#' @name print.parameterDef
#' @aliases print.parameterDef
#' @title Print a parameterDef Object.
#' @method print parameterDef
#' @param x A parameterDef Object
#' @param \dots unused
#' @author TszKin Julian Chan \email{ctszkin@@gmail.com}
#' @export
#' @seealso \code{\link{createParDef}}

print.parameterDef <-
function(x,...){
    cat("Selection Parameters:\n")
    print(x$selection)
    cat("\n")
    cat("Banker Parameters:\n")
    print(x$banker)
}

Try the ezsim package in your browser

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

ezsim documentation built on May 1, 2019, 8:04 p.m.