I'm estimating an instrumental variables model using the user-generated command cmp.
In other IV commands such as ivreg2, the Kleibergen-Paap rk (under-id), Hansen-J (over-id) and tests for exogeneity are easily obtained. However, I'm not sure how to obtain each of these after cmp.
Can I simply use the test command to produce my F-statistics for the underidentification test, for example?
Here's the main model code.
Would the Kleibergen-Paap rk test be produced via the following?
How would I estimate the endogeneity and overidentification tests? I'm working on the assumption my errors are heteroskedastic given survey-adjustment.
Thanks for your time!
In other IV commands such as ivreg2, the Kleibergen-Paap rk (under-id), Hansen-J (over-id) and tests for exogeneity are easily obtained. However, I'm not sure how to obtain each of these after cmp.
Can I simply use the test command to produce my F-statistics for the underidentification test, for example?
Here's the main model code.
Code:
(fee = `X' endogvar) (selectvar = `select_eq') (endogvar = `X' `i.instruments') , ind(selectvar $cmp_probit $cmp_cont) svy subpop(adult) qui
Code:
test ([endogvar] 1.instrument 2.instrument 3.instrument)
Thanks for your time!
Comment