Hi, all
I have read some posts about adding a county specific time trend into the model (e.g., Link for post). Suppose that I have three variables for county, year, and month respectively.
I know the correct way to specify a county specific yearly time trend is to add
into a 'fe' model
Now, if I also want to specify not only the county specific yearly time trend, but county specific monthly time trend as well, can I do it by adding the following term into my model?
or adding them separately, like:
if not, what's the correct way to achieve that?
Many thanks!
I have read some posts about adding a county specific time trend into the model (e.g., Link for post). Suppose that I have three variables for county, year, and month respectively.
I know the correct way to specify a county specific yearly time trend is to add
Code:
c.year ## i.county
Now, if I also want to specify not only the county specific yearly time trend, but county specific monthly time trend as well, can I do it by adding the following term into my model?
Code:
c.year #c.month# i.county
Code:
c.year ## i.county c.month ## i.county
Many thanks!
Comment