R/summary.mvProbit.R

Defines functions summary.mvProbit

Documented in summary.mvProbit

summary.mvProbit <- function( object, ... ) {

   result <- NextMethod( "summary", object )

   result$call <- object$call
   result$start <- object$start
   result$nDep <- object$nDep
   result$nReg <- object$nReg
   result$nObs <- object$nObs

   class( result ) <- c( "summary.mvProbit", class( result ) )

   return( result )
}

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.