I learned that when conducting a fixed-effects analysis one should exclude everybody who is already in the treatment group in wave 1, because one cannot examine the before-and-after-effect in this case. While this sounds plausible to me, I wonder
Question 1: Do I really have to exclude everyone who is already in the treatment in wave 1 or does the analysis does automateically not consider those people when estimating the effect? Because if I have to exclude those persons, this is my problem:
Question 2: Over the waves, my Treatment indicator is found several times, so for example
I excluded everyone who has already been in treatment in wave 1, so:
drop if treatment == 1 & wave == 1
But then I suddenly have "insufficient observations" in my analysis! Asking
count if !missing(Treatment, Control variables)
it suddenly says there are zero cases. Prior to excluding it said something like 50 cases.
Am I doing s.th. wrong or do I not even have to worry about this?
I am grateful for any feedback. Thank you very much!
Question 1: Do I really have to exclude everyone who is already in the treatment in wave 1 or does the analysis does automateically not consider those people when estimating the effect? Because if I have to exclude those persons, this is my problem:
Question 2: Over the waves, my Treatment indicator is found several times, so for example
Wave 1 | Wave 2 | Wave 3 | |
Treatment | 45 | 8 | 90 |
Control | 10345 | 10382 | 10300 |
drop if treatment == 1 & wave == 1
But then I suddenly have "insufficient observations" in my analysis! Asking
count if !missing(Treatment, Control variables)
it suddenly says there are zero cases. Prior to excluding it said something like 50 cases.
Am I doing s.th. wrong or do I not even have to worry about this?
I am grateful for any feedback. Thank you very much!
Comment