Dear Statalist,
I have a panel of individuals, some of whom are treated at a future date and some of whom are not. The treatment is a voluntary decision, rather than randomly assigned. Let's say treatment is equal to migration at some point in the future.
This is a minimum data example:
I want to compare the treated and control group along some covariates, for example I want to know whether many years before migration future migrants had a higher or lower income than non-migrants, controlling for other factors.
I do not want to study the effect of income on the decision to migrate; I am just interested in seeing whether the two groups are different along the income dimension.
I could estimate the following:
By doing so, I am putting on the right hand side a future outcome which happens after the dependent variable on the left hand side is realized. In general, this sounds questionable, but I think it might be alright in this case since I am not trying to estimate the effect of x on y.
I am not sure how else to put this problem and I would appreciate some suggestion or reference. I have been referred to Cox time dependent covariates but it doesn't sound very related.
Thank you!
I have a panel of individuals, some of whom are treated at a future date and some of whom are not. The treatment is a voluntary decision, rather than randomly assigned. Let's say treatment is equal to migration at some point in the future.
This is a minimum data example:
HTML Code:
* Example generated by -dataex-. For more info, type help dataex clear input float(ID year treatment income) str8 marst float group_marst 1 2003 1 10000 "single" 3 1 2004 1 15000 "married" 2 1 2005 1 12000 "divorced" 1 1 2006 1 14000 "married" 2 1 2007 1 16000 "married" 2 1 2008 1 16000 "married" 2 2 2001 0 8000 "single" 3 2 2004 0 7000 "single" 3 2 2005 0 6000 "single" 3 3 2007 0 7500 "divorced" 1 4 2008 0 990 "single" 3 4 2009 0 8900 "married" 2 4 2010 0 5400 "married" 2 4 2011 0 6000 "married" 2 4 2013 0 5000 "divorced" 1 5 2005 1 25000 "single" 3 5 2007 1 18000 "married" 2 5 2009 1 17500 "married" 2 5 2010 1 16500 "married" 2 end
I do not want to study the effect of income on the decision to migrate; I am just interested in seeing whether the two groups are different along the income dimension.
I could estimate the following:
HTML Code:
reg income treatment i.year i.group_marst
I am not sure how else to put this problem and I would appreciate some suggestion or reference. I have been referred to Cox time dependent covariates but it doesn't sound very related.
Thank you!
Comment