R/print.dream.R

print.dream <- function(x,...){
  cat("
Call:
")
  
  print(x$call)
  
  cat("
Control:
")
  for (i in names(x$control)){
    v <- x$control[[i]]
    cat(sprintf("%15s: ",i))
    cat(v,"\n")
  } 

  cat("\nExit condition:",x$EXITMSG,"\n")

}

Try the dream package in your browser

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

dream documentation built on May 2, 2019, 5:21 p.m.