Hello.
I have an unbalance panel and use a fixed effects estimator with corrected standard errors (vce(robust)). I have a main variable of interest (l.x1) which I interact with a number of moderators (l.x2, x3, and x4). All variables are continuous. I noticed that as long as I use only two interactions
the estimation runs on the full sample (n=438).
However, as soon as I add one more interaction, i.e.
the estimation runs on n=316. I know this is not due to missing values. All variables are available for the full sample.
I'm using Stata 15, and when I run the estimation I do NOT receive an error message. Of course in the output I'm being told that l.x1 is omitted because of collinearity which I know happens since I'm interacting it with a number of different moderators.
Thank you for any help.
Best,
Annette
I have an unbalance panel and use a fixed effects estimator with corrected standard errors (vce(robust)). I have a main variable of interest (l.x1) which I interact with a number of moderators (l.x2, x3, and x4). All variables are continuous. I noticed that as long as I use only two interactions
Code:
xtreg y c.l.x1##c.l.x2 c.l.x1##c.x3, fe vce(robust)
However, as soon as I add one more interaction, i.e.
Code:
xtreg y c.l.x1##c.l.x2 c.l.x1##c.x3 c.l.x1##c.x4, fe vce(robust)
I'm using Stata 15, and when I run the estimation I do NOT receive an error message. Of course in the output I'm being told that l.x1 is omitted because of collinearity which I know happens since I'm interacting it with a number of different moderators.
Thank you for any help.
Best,
Annette
Comment