Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the example from the sampleSelection package

## Greene( 2003 ): example 22.8, page 786
    data( Mroz87 )
    Mroz87$kids  <- ( Mroz87$kids5 + Mroz87$kids618 > 0 )
    # Two-step estimation
    test1  = heckit( lfp ~ age + I( age^2 ) + faminc + kids + educ,
                     wage ~ exper + I( exper^2 ) + educ + city, Mroz87 ) 
    # ML estimation
    test2 =  selection( lfp ~ age + I( age^2 ) + faminc + kids + educ,
                        wage ~ exper + I( exper^2 ) + educ + city, Mroz87 ) 
    pr2 <- predict(test2,Mroz87)
    pr1 <- predict(test1,Mroz87)

My problem is that the predict function does not work. I get this error:

    Error in UseMethod("predict") : 
  no applicable method for 'predict' applied to an object of class "c('selection', 'maxLik', 'maxim', 'list')"

The predict function works for many models so I wonder why I get an error for heckman regression models.

-----------UPDATE----------- I made some progress but I still need your help. I build an original heckman model for comparsion:

data( Mroz87 )
Mroz87$kids  <- ( Mroz87$kids5 + Mroz87$kids618 > 0 )
test1  = heckit( lfp ~ age + I( age^2 ) + faminc + kids + educ,
                 wage ~ exper + I( exper^2 ) + educ + city, Mroz87[1:600,] ) 

After that I start building it on my own. Heckman model requires a selection equation:

zi* = wi γ + ui
where zi =1 if zi* >0  and zi = 0 if zi* <=0
after you calculate yi = xi*beta +ei ONLY for the cases where zi*>0

I build the probit model first:

library(MASS)
#probit1 = probit(lfp ~ age + I( age^2 ) + faminc + kids + educ, Mroz87, x = TRUE, print.level = print.level -      1, iterlim = 30)
myprobit <- glm(lfp ~ age + I( age^2 ) + faminc + kids + educ, family = binomial(link = "probit"), 
                data = Mroz87[1:600,])
summary(myprobit)

The model is exactly the same just as with the heckit command.

Then I build a lm model:

#get predictions for the variables (the data is not needed but I specify it anyway)
selectvar <- predict(myprobit,data = Mroz87[1:600,])
#bind the prediction to the table (I build a new one in my case)
newdata = cbind(Mroz87[1:600,],selectvar)
#Build an lm model for the subset where zi>0
lm1 = lm(wage ~ exper + I( exper^2 ) + educ + city , newdata, subset = selectvar > 0)
summary(lm1)

My issue now is that the lm model does not much the one created by heckit. I have no idea why. Any ideas?

share|improve this question
There is no predict.selection function. – DWin Dec 22 '12 at 20:42
Thanks DWin. Is there any way that I can do it myself? Maybe use the probit for the selection model, and then use it with the lm function? Then predict should function. So basically I'll use probit to produce a model, and then use predict for this model and apply it as a variable when creating the lm model. Could that work? – Michael Tsikerdekis Dec 22 '12 at 20:47
Does it make sense to predict the lm object contained in the selection object, i.e. predict(test2$twoStep$lm)? – pistachionut Dec 22 '12 at 20:51
It works that way but it is still a problem when I use the model to predict new data. For example say that the first 10 rows in the table were our testing sample. If I were to run predict(test2$twoStep$lm,Mroz87[1:10,]) then I get a warning Warning message: 'newdata' had 10 rows but variable(s) found have 753 rows and it returns me 753 rows instead of 10 that I requested. – Michael Tsikerdekis Dec 23 '12 at 8:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.