Dear friends,
I am running a difference-in-difference design on effect of labour market law in India. Data I have is panel data at worker level, and am interested in how worker hour changed after law implementation. Data I have is on workers in two state, and one state implemented the law while other state did not implement the law. Rajasthan having the law, and Gujarat not having the law. The regression I have is:
My FE will be worker FE. Is this the correct specification?
Am now wanting to implement state specific linear time trend. I have looked at the forum and decided to implement following regression:
I have 3 questions:
1. Include the specific linear trend for gujarat state which was not treatment state as well? So I will be having the regression:
)
2. Which variable should be omitted in each specifications? I am seeing STATA omitting my i.law and i.rajasthan variable in first specification, and many more in second specification. and am not understanding why.
3. What is the meaning behind the 'year' variable? This is the time trend before law implementation between two states?
My model is similar to this famous model: http://econ.lse.ac.uk/staff/rburgess/wp/indreg.pdf
on top of page 18, but I have data at worker and not industry level.
Many thanks,
Sanjay
I am running a difference-in-difference design on effect of labour market law in India. Data I have is panel data at worker level, and am interested in how worker hour changed after law implementation. Data I have is on workers in two state, and one state implemented the law while other state did not implement the law. Rajasthan having the law, and Gujarat not having the law. The regression I have is:
Code:
xtset worker year gen law= (year >=2002) xtreg hours i.rajasthan##i.law i.year, fe vce(cluster state)
Am now wanting to implement state specific linear time trend. I have looked at the forum and decided to implement following regression:
Code:
xtset worker year gen law= (year >=2002) xtreg hours i.rajasthan##i.law i.year c.year##i.rajasthan, fe vce(cluster state)
I have 3 questions:
1. Include the specific linear trend for gujarat state which was not treatment state as well? So I will be having the regression:
Code:
xtset worker year gen law= (year >=2002) xtreg hours i.rajasthan##i.law i.year c.year##i.rajasthan c.year##i.rajasthan c.year##i.gujarat , fe vce(cluster state
2. Which variable should be omitted in each specifications? I am seeing STATA omitting my i.law and i.rajasthan variable in first specification, and many more in second specification. and am not understanding why.
3. What is the meaning behind the 'year' variable? This is the time trend before law implementation between two states?
My model is similar to this famous model: http://econ.lse.ac.uk/staff/rburgess/wp/indreg.pdf
on top of page 18, but I have data at worker and not industry level.
Many thanks,
Sanjay
Comment