Dear Statalist fellows,
Stata/MP 17, macOS
After loading a csv file and generating some interactions and labelling others, I ran this:
... which works fine. Then:
, with no errors and correspondent creation of an additional item in the variables list, then:
, which gives the following error:
This is the first and most important issues which I could not solve after a week searching for an answer.
The second is the obviously weird syntax used for the regression. Using this notation:
... returns the following message:
I appreciate any help with both, but especially the "already exists" error.
Cheers
Denis
Stata/MP 17, macOS
After loading a csv file and generating some interactions and labelling others, I ran this:
Code:
ivreg2 depvar t1##(v1 v2 v3) t2##(v1 v2 v3) t3##(v1 v2 v3) t4##(v1 v2 v3) t5##(v1 v2 v3) (endogreg = iv1 iv2) i.year i.sic, first gmm2s rob endog(endogreg) orthog(iv2) redundant(iv1 iv2)
Code:
estimates store A
Code:
estimates table A
Code:
Mata object __000002 already existsr(110);
The second is the obviously weird syntax used for the regression. Using this notation:
Code:
ivreg2 depvar (t1-t3)##(v1 v2 v3) (endogreg = iv1 iv2)
Code:
syntax is "(all instrumented variables = instrument variables)" invalid syntax r(198)
I appreciate any help with both, but especially the "already exists" error.
Cheers
Denis

Comment