Dear all,
I was running the following model, where I wanted to test for any heterogeneity by gender:
where Y is the binary DV, X is an endogenous variable and Z is an IV.
When trying to run this I got the following error:
However, when I run the following models, I have no errors:
Am I doing something wrong with the first model, using the interactions?
I appreciate your help.
I was running the following model, where I wanted to test for any heterogeneity by gender:
Code:
ivprobit Y (c.X#i.child_male = c.Z#i.child_male), cluster(prov_birth_child_code) first
When trying to run this I got the following error:
Code:
could not find initial values
Code:
ivprobit Y (X= Z) if child_male ==1, cluster(prov_birth_child_code) first ivprobit Y (X= Z) if child_male ==0, cluster(prov_birth_child_code) first
I appreciate your help.
Comment