Learn R Programming

micEcon (version 0.1-3)

summary.heckit: Print output of heckit estimation

Description

This function returns a summary of the 2-step-Heckmann / heckit estimation.

Usage

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

Arguments

object
an object of calss heckit.
...
further arguments passed to summary.glm and summary.lm.

Value

  • summary.heckit returns an object of class heckit.

See Also

heckit

Examples

Run this code
data( Mroz87 )
wooldridge <- heckit( log( wage ) ~ educ + exper + I( exper^2 ),
   lfp ~ nwifeinc + educ + exper + I( exper^2 ) + age + kids5 + kids618, Mroz87 )
summary( wooldridge )        # summary of the 1st step probit estimation
                             # (Example 17.1, p. 562f) and 2nd step OLS regression

Run the code above in your browser using DataLab