R/print.MPRM.R

Defines functions print.MPRM

Documented in print.MPRM

#' @rdname mprm
#'
#' @export
#'
#' @method print MPRM
#'
#' @param x object of class \code{MPRM}

print.MPRM <-
function(x, ...){
  
  cat("\n Call: ", deparse(x$call), "\n\n")
  
  cat("Function calls: \n")
    print(x$fun_calls)
   
  cat("Parameter estimates: \n")
  print(x$itempar)
  print(x$itempar_se)
  
}

Try the pcIRT package in your browser

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

pcIRT documentation built on July 16, 2019, 1:02 a.m.