Hi, I have a panel data and I want to run a Poisson regression with Newey-West standard errors. My code is:
sort group year
xi i.year i.group
nwest poisson y x _Iyear* _Igroup*, force lag(3)
I get the error message:
name conflict
r(507);
When I try different specifications (probit, regress) everything works. What is the problem?
sort group year
xi i.year i.group
nwest poisson y x _Iyear* _Igroup*, force lag(3)
I get the error message:
name conflict
r(507);
When I try different specifications (probit, regress) everything works. What is the problem?
Comment