View source: R/summary.HeckmantS.R
summary.HeckmantS | R Documentation |
Prints a detailed summary of the parameter estimates and model fit
statistics for an object of class HeckmantS
.
## S3 method for class 'HeckmantS'
summary(object, ...)
object |
An object of class |
... |
Additional arguments (currently unused). |
This method displays the maximum likelihood estimation results for the Heckman sample selection model with Student's t-distributed errors. It includes separate coefficient tables for:
Selection equation (Probit model),
Outcome equation,
Error terms (including sigma
, rho
, and df
).
Model fit statistics (log-likelihood, AIC, BIC, and number of observations) are also provided for model evaluation.
Prints to the console:
Model fit statistics (log-likelihood, AIC, BIC, number of observations).
Coefficient tables with standard errors and significance stars.
Invisibly returns NULL
.
HeckmantS
## Not run:
data(MEPS2001)
attach(MEPS2001)
selectEq <- dambexp ~ age + female + educ + blhisp + totchr + ins + income
outcomeEq <- lnambx ~ age + female + educ + blhisp + totchr + ins
model <- HeckmantS(selectEq, outcomeEq, data = MEPS2001, df = 12)
summary(model)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.