R/print_stratEst_strategy.R

Defines functions print.stratEst.strategy

Documented in print.stratEst.strategy

#' Print Method for stratEst.strategy
#' @param x An object of class \code{stratEst.strategy}.
#' @param ... Further arguments passed to or from other methods.
#' @return No return value, prints a summary of the strategy to the console.
#' @export

print.stratEst.strategy <- function( x , ... ){
  x <- round.stratEst.strategy(x,digits=3)
  print.data.frame(x , ... )  #unlist("stratEst.strategy", NextMethod())

}

Try the stratEst package in your browser

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

stratEst documentation built on Dec. 1, 2022, 1:13 a.m.