I have an annual dataset of companies.
I define entry as follows: a company is considered to have started business in year t if the business first appeared in my dataset in year t.
In 2000, there was an event that might have affected entry of companies.
I want to learn how the effect of this 2000 event on company entry differed across states by Republican vote shares.
Can I just run this?
1{Enter}i,s,t = beta*1{year>=2000}*RepVoteShares + FEs,t + error
where
i = company
s = state
t = year
1{Enter}i,s,t = 1 if company i, which is in state s, first entered the dataset in year t (was missing in years before year t).
This looks OK at first glance.
But if I think about it, those that did not enter are not included in my dataset. So is that problematic in a way that "beta" doesn't capture what I want it to capture? Or perhaps FE removes this concern?
I define entry as follows: a company is considered to have started business in year t if the business first appeared in my dataset in year t.
In 2000, there was an event that might have affected entry of companies.
I want to learn how the effect of this 2000 event on company entry differed across states by Republican vote shares.
Can I just run this?
1{Enter}i,s,t = beta*1{year>=2000}*RepVoteShares + FEs,t + error
where
i = company
s = state
t = year
1{Enter}i,s,t = 1 if company i, which is in state s, first entered the dataset in year t (was missing in years before year t).
This looks OK at first glance.
But if I think about it, those that did not enter are not included in my dataset. So is that problematic in a way that "beta" doesn't capture what I want it to capture? Or perhaps FE removes this concern?
Comment