Hello,
We are running a model with a binary Y and two binary endonegous X variables X1 and X2 which we are instrumenting with Z1 and Z2. X1 and X2 are also dummy variables. We are using the following code for our analysis:
cmp (Y= X1 X2 `Other Xvars') (X1 = Z1 Z2 `Other Xvars') (X2 = Z1 Z2 `Other Xvars'), indicators($cmp_probit $cmp_probit $cmp_probit) vce(cluster Cluster)
margins, predict(pr eq(#1)) dydx(X1) force
margins, predict(pr eq(#1)) dydx(X2) force
Everything is working fine with the above code.
Next, we try to estimate the conditional marginal effect of X1 for X2=0 or 1 and vice versa. To do that we use the following code:
margins, predict(pr eq(#1)) dydx(X1) subpop (if X2==0) force post
margins, predict(pr eq(#1)) dydx(X1) subpop (if X2==1) force post
However, this gives us "margins not estimable". We cannot understand the issue here. We have also tried the following options, but keep getting the same problem:
1. margins, predict(pr eq(#1)) dydx(X1) at(X2=(0 1)) force post
2. We have tried changing to vce(robust) and also vce(cluster State) in the main cmp specification.
We are at a complete loss as to why we keep on getting this error. We would highly appreciate if someone could guide us on how we can get conditional marginal effects in our context, following the CMP command. Thanks a lot in advance!
Related Posts with Estimating Condtional margins after CMP command
Excel Table split by socio-demographics using PutexcelHello fellow Stata community, I´m looking for a way to automate my Analysis Output to Excel using P…
Exporting detailed summary statistics to WordHello helpful Stata users, I am trying to generate a word export of my dependent variable via the s…
egen maxdate gives dates 01/01/2500Hello everyone I am trying to get the difference between two dates to calculate follow up per patie…
Weight in panel dataDear users, I am working with a static panel dataset including variables at the household level for…
Systems of simultaneous equations with non-linear constraintsDear Stata users, I have the following issue: I have to estimate a system of simultaneous equations…
Subscribe to:
Post Comments (Atom)
0 Response to Estimating Condtional margins after CMP command
Post a Comment