R/print.censReg.R

Defines functions print.censReg

Documented in print.censReg

print.censReg <- function( x, logSigma = TRUE, digits = 4, ... ) {

   cat( "\n" )
   cat( "Call:\n" )
   cat( paste( deparse( x$call ), sep = "\n", collapse = "\n" ) )
   cat( "\n\n" )
   cat( "Coefficients:\n" )
   print( coef( x, logSigma = logSigma ), digits = digits )
   cat( "\n" )
   invisible( x )
}

Try the censReg package in your browser

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

censReg documentation built on Sept. 18, 2024, 3:03 p.m.