I am trying to analyze the determinants of the intention to grow an a certain variety of maize in Zambia. The data has decision variable, whether to choose to grow the variety in the coming season (1 if they grow, 0 otherwise), and if they decide the area of land they would dedicate to that specific variety. Ideally, my understanding is to use double hurdle model to investigate this. However, I believe I need to justify why I chose this model over Tobit model. While I read articles, they mention that they used Likelihood Ratio Test to see which model is appropriate.
My understanding was that we use Likelihood Ratio Test to compare nested models. In this case, the models are not nested. Rather the estimators are different with the same number of variables. And that is what STATA has been confirming to me. Therefore, I was wondering how they did it. I tried to email some of the authors, but could not get responses so far.
Using STATA 16, I tried to run the following commands to do the LR Test to see if it works. I used "churdle" model to estimate the double hurdle model.
---------------
tobit depvar var1 var2 var 3, ll(0)
est store tobit1
churdle linear depvar var1 var2 var 3, select (var1 var2 var 3) ll(0)
est store churdle1
lrtest tobit1 craggit1
-----------------
*Result*
. lrtest tobit1 craggit1
test involves different estimators: craggit vs. tobit
---------------------
I even tried to calculate the LR manually, but it cannot do the significance test as there is no difference in degrees of freedom because the two models have the same number of variables unlike nested modes.
My question is, is LR Test the right method to compare the two models? If so, what is the command that would get me results. If not, what is the appropriate test?
Thank you.
Related Posts with Can I use Likliehood Ratio Test to choose Double Hurdle Model over Tobit?
Help exporting to excelHi everyone, I am previously an R-user and finding the functionality of STATA frustrating. I want to…
-order(c.(A C B)#c.X) option does not work with esttab?Dear all, I use the following commands to make a table: eststo: reg Y c.(A B C)#c.X esttab, order(…
Simple Merging Issue with ID variableHi everyone I am having a simple problem with merging interest rate data with a country identifier …
How to extract a word from a string variable.I have a variable that captures actual household address, say, "76 Longstreet Albertville Gauteng". …
Pooled cross sectional regression analysisHi all, I have a dataset that looks like Code: * Example generated by -dataex-. To install: ssc …
Subscribe to:
Post Comments (Atom)
0 Response to Can I use Likliehood Ratio Test to choose Double Hurdle Model over Tobit?
Post a Comment