Summary Results of Censored Regression Models
These methods prepare and print summary results for censored regression models.
## S3 method for class 'censReg' summary( object, ... ) ## S3 method for class 'summary.censReg' print( x, logSigma = TRUE, digits = 4, ... )
object |
object of class |
x |
object of class |
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 |
... |
currently not used. |
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:
call |
the matched call. |
nObs |
a vector containing 4 integer values: the total number of observations, the number of left-censored observations, the number of uncensored observations, and the number of right-censored observations. |
Arne Henningsen
## Kleiber & Zeileis ( 2008 ), page 142 data( "Affairs", package = "AER" ) estResult <- censReg( affairs ~ age + yearsmarried + religiousness + occupation + rating, data = Affairs ) summary( estResult )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.