R/print.summary.mvProbit.R

Defines functions print.summary.mvProbit

Documented in print.summary.mvProbit

print.summary.mvProbit <- function( x, digits = 4, ... ) {

   cat( "\n" )
   cat( "Call:\n" )
   cat( paste( deparse( x$call ), sep = "\n", collapse = "\n" ) )
   cat( "\n\n" )
   cat( "Coefficients:\n" )
   printCoefmat( coef( x ), digits = digits )
   cat( "\n" )
   cat( maximType( x ), ", ", nIter( x ), " iterations\n", sep = "" )
   cat( "Return code ", returnCode( x ), ": ", returnMessage( x ),
      "\n", sep = "" )
   cat( "Log-likelihood:", x$loglik, "on", sum( activePar( x ) ), "Df\n" )
   cat( "\n" )
   invisible( x )
}

Try the mvProbit package in your browser

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

mvProbit documentation built on March 4, 2020, 3 p.m.