Hi all,
I have a pooled cross sectional dataset from 2004 to 2018, and two categorial dependent variables: economic status (employed, unemployed, inactive) and contract type (temporary or permanent job).
I wish to see:
1) to what extent the relationship between age groups and economic status is different over time...
2) to what extent the relationship between age groups and contract type is different over time...
(3)...considering gender differences (not a simple control variable).
I created dummy variables for all the years, but including only T-1 time dummies. So my stata code is:
My supervisor asked me "why are you using year instead of period fixed effects?"
So I am asking you: what is wrong with my syntax? Can you help me to understand what he's meaning? Because I understand his question as fixed effects (xtreg..., fe), but aren't fixed effect models only for pane data?
Thank you to anyone trying to help me out!
Bests,
Chiara
I have a pooled cross sectional dataset from 2004 to 2018, and two categorial dependent variables: economic status (employed, unemployed, inactive) and contract type (temporary or permanent job).
I wish to see:
1) to what extent the relationship between age groups and economic status is different over time...
2) to what extent the relationship between age groups and contract type is different over time...
(3)...considering gender differences (not a simple control variable).
I created dummy variables for all the years, but including only T-1 time dummies. So my stata code is:
Code:
bys gender: mlogit ecostat i.y2005##i.agec i.y2006##i.agec i.y2007##i.agec i.y2008##i.agec i.y2009##i.agec i.y2010##i.agec i.y2011##i.ageg i.y2012##i.agec i.y2013##i.agec i.y2014##i.agec i.y2015##i.agec i.y2016##i.agec i.y2017##i.agec i.y2018##i.ageg i.edu3 i.mregion i.hpart i.depch c.isei08 bys gender: logit tempj i.y2005##i.ageg i.y2006##i.ageg i.y2007##i.ageg i.y2008##i.ageg i.y2009##i.ageg i.y2010##i.ageg i.y2011##i.ageg i.y2012##i.ageg i.y2013##i.ageg i.y2014##i.ageg i.y2015##i.ageg i.y2016##i.ageg i.y2017##i.ageg i.y2018##i.ageg i.edu3 i.mregion i.hpart i.depch c.isei08 i.lastempj i.firms
My supervisor asked me "why are you using year instead of period fixed effects?"
So I am asking you: what is wrong with my syntax? Can you help me to understand what he's meaning? Because I understand his question as fixed effects (xtreg..., fe), but aren't fixed effect models only for pane data?
Thank you to anyone trying to help me out!
Bests,
Chiara
Comment