Dear All,
I am working on an impact evaluation using STATA 13.1 (last update) on OSX (last update) and my dataset is a panel data (unbalanced) with two time periods: Baseline (2002) where nobody applied to the program and Follow-up (2010) where some applied and some other have not.
The program was designed to be universal, hence everybody can apply, which makes impact estimation tricky due to unobservable characteristics.
The assessment will be in terms of multidimensional poverty. My dependent variable will be my poverty estimation with cut-off at K=4 (hence m0_4).
Before posting here I read as much literature as possible and I have followed Prof. Woolridge's guide here: http://www.ifs.org.uk/docs/wooldridge%20session%204.pdf
However, when I try to run the - xtivreg2- command:
STATA return the following error: "no observation".
If I try to run a simple -xtivreg- command:
STATA returns the following error:
I did tsset my panel:
I am I doing something wrong?
Thank you very much.
Alberto
I am working on an impact evaluation using STATA 13.1 (last update) on OSX (last update) and my dataset is a panel data (unbalanced) with two time periods: Baseline (2002) where nobody applied to the program and Follow-up (2010) where some applied and some other have not.
Code:
. tab MGNREGA adj_round MGNREGA | Adjusted Round Treatment | 2002 - Ba 2010 - Fo | Total -----------+----------------------+---------- No | 1,008 399 | 1,407 Yes | 0 576 | 576 -----------+----------------------+---------- Total | 1,008 975 | 1,983
The assessment will be in terms of multidimensional poverty. My dependent variable will be my poverty estimation with cut-off at K=4 (hence m0_4).
Before posting here I read as much literature as possible and I have followed Prof. Woolridge's guide here: http://www.ifs.org.uk/docs/wooldridge%20session%204.pdf
However, when I try to run the - xtivreg2- command:
Code:
xtivreg2 m0_4 typesite region careage caredu (MGNREGA = mch*), fe endog(MGNREGA)
If I try to run a simple -xtivreg- command:
Code:
xtivreg m0_4 typesite region careage caredu (MGNREGA = mch*), fe
Code:
the sample specifies cross-sectional data, xtivreg is not designed for cross-sectional data, use ivregress with cross-sectional data, r(498);
Code:
. tsset panel variable: childid (unbalanced) time variable: adj_round, 0 to 1 delta: 1 unit
Thank you very much.
Alberto
Comment