I am running a regression with an interaction between the state and year
And when I run esttab to write the results to a latex file:
But it keeps writing it as "fipstate==# & year==#" in latex, which can't compile, because it thinks there is an extra column with that. I have tried adding
to the esttab command, but it does nothing.
Code:
xi: xtreg y x i.fipstate*i.year, fe cluster(fips) eststo m1
Code:
esttab m1 using "C:\Latex\interaction.tex", style(tex) label width(\textwidth)
Code:
interaction(" $\times$ ")
Comment