Dear all,
I am using Stata (version 15.1) to estimate a first difference regression. My question is more conceptual in nature. Therefore, I am not providing any Stata output.
My research question is whether the work intensity of a household increases (decreases) after the household started (stopped) using formal childcare for its youngest child. Each household in my sample is observed at exactly two time points. My dependent variable (WORK) is a continuous variable capturing the work intensity of a household (as a percent). My main independent variable is a categorical variable with three levels represented by three dummy variables: "no formal child care" (ECEC1); "part-time formal child care" (ECEC2); "full-time formal child care" (ECEC3).
Between t1 and t2, I observe six types of transitions in my sample (Δ gives the first difference for each dummy variable):
Lines 1), 2), 3), and 5) describe transitions between ECEC1 and ECEC2/ECEC3, whereas lines 4) and 6) describe transitions between ECEC2 and ECEC3. If I type:
in Stata, Stata will drop the coefficient for ECEC1 and report two coefficients for ECEC2 and ECEC3. I am unsure how to interpret these two coefficients. My general idea is that the coefficients describe the average change on WORK that is associated with a transition from ECEC1 to ECEC2/from ECEC1 to ECEC3. However, this would imply that Stata ignores transitions 4) and 6) in its estimation of the coefficients for ECEC2 and ECEC3.
Is my interpretation correct? I would be happy if someone could provide a definitive answer to my question, since most book chapters and journal articles on panel regression remain vague with regard to the interpretation of dummy variable sets in first difference and fixed effects regression.
Many thanks in advance,
Antonino
I am using Stata (version 15.1) to estimate a first difference regression. My question is more conceptual in nature. Therefore, I am not providing any Stata output.
My research question is whether the work intensity of a household increases (decreases) after the household started (stopped) using formal childcare for its youngest child. Each household in my sample is observed at exactly two time points. My dependent variable (WORK) is a continuous variable capturing the work intensity of a household (as a percent). My main independent variable is a categorical variable with three levels represented by three dummy variables: "no formal child care" (ECEC1); "part-time formal child care" (ECEC2); "full-time formal child care" (ECEC3).
Between t1 and t2, I observe six types of transitions in my sample (Δ gives the first difference for each dummy variable):
ECEC1 | ECEC2 | ECEC3 | ||
1) | t1 | 1 | 0 | 0 |
t2 | 0 | 1 | 0 | |
Δ | -1 | 1 | 0 | |
2) | t1 | 1 | 0 | 0 |
t2 | 0 | 0 | 1 | |
Δ | -1 | 0 | 1 | |
3) | t1 | 0 | 1 | 0 |
t2 | 1 | 0 | 0 | |
Δ | 1 | -1 | 0 | |
4) | t1 | 0 | 1 | 0 |
t2 | 0 | 0 | 1 | |
Δ | 0 | -1 | 1 | |
5) | t1 | 0 | 0 | 1 |
t2 | 1 | 0 | 0 | |
Δ | 1 | 0 | -1 | |
6) | t1 | 0 | 0 | 1 |
t2 | 0 | 1 | 0 | |
Δ | 0 | 1 | -1 |
Code:
reg D.(WORK ECEC1 ECEC2 ECEC3), nocons
Is my interpretation correct? I would be happy if someone could provide a definitive answer to my question, since most book chapters and journal articles on panel regression remain vague with regard to the interpretation of dummy variable sets in first difference and fixed effects regression.
Many thanks in advance,
Antonino
Comment