Dear all,
I have panel data for all variables tariff, emissions and industry for five years. I am trying to find association of tariff and emissions. I use the following code for it.
How do I sum up the main effect of emissions and interaction terms for each year and test for its significance?
Thank you
I have panel data for all variables tariff, emissions and industry for five years. I am trying to find association of tariff and emissions. I use the following code for it.
How do I sum up the main effect of emissions and interaction terms for each year and test for its significance?
Code:
reghdfe tariff i.year##c.emissions, a(industry) cluster(industry)
Comment