Learn R Programming

censReg (version 0.5-22)

summary.censReg: Summary Results of Censored Regression Models

Description

These methods prepare and print summary results for censored regression models.

Usage

"summary"( object, ... )
"print"( x, logSigma = TRUE, digits = 4, ... )

Arguments

object
object of class "censReg" (returned by censReg).
x
object of class "summary.censReg" (returned by summary.censReg).
logSigma
logical value indicating whether the variance(s) of the model should be printed logarithmized.
digits
positive integer specifiying the minimum number of significant digits to be printed (passed to printCoefmat).
...
currently not used.

Value

summary.censReg returns an object of class "summary.censReg" inheriting from class "summary.maxLik". The returned object contains the same components as objects returned by summary.maxLik and additionally the following components:

See Also

censReg, coef.summary.censReg, and coef.censReg

Examples

Run this code
## Kleiber & Zeileis ( 2008 ), page 142
data( "Affairs", package = "AER" )
estResult <- censReg( affairs ~ age + yearsmarried + religiousness +
   occupation + rating, data = Affairs )
summary( estResult )

Run the code above in your browser using DataLab