summary.HeckmanBS {ssmodels}R Documentation

Summary of Birnbaum-Saunders Heckman Model

Description

Prints a detailed summary of the parameter estimates and model fit statistics for an object of class HeckmanBS.

Usage

## S3 method for class 'HeckmanBS'
summary(object, ...)

Arguments

object

An object of class HeckmanBS, containing the fitted model results.

...

Additional arguments (currently unused).

Details

This method provides a summary of the maximum likelihood estimation results for the Heckman sample selection model with Birnbaum-Saunders errors. It includes separate coefficient tables for:

Model fit criteria such as the log-likelihood, AIC, and BIC are also reported.

Value

Prints to the console:

Invisibly returns NULL.

See Also

HeckmanBS

Examples

## Not run: 
data(MEPS2001)
attach(MEPS2001)
selectEq <- dambexp ~ age + female + educ + blhisp + totchr + ins + income
outcomeEq <- ambexp ~ age + female + educ + blhisp + totchr + ins
model <- HeckmanBS(selectEq, outcomeEq, data = MEPS2001)
summary(model)

## End(Not run)


[Package ssmodels version 2.0.1 Index]