I´m trying to run fixed effects regressions in R using the feglm command from the fixest package. The data contains three dummy variables: (1) variable z is 0, (2) variable z is between 1 and 8, and (3) variable z is larger than 8. I understand that it is necessary to drop one dummy to avoid collinearity. However, is this done by feglm or do I have to do it manually?
The question boils down to whether I have to include 2 or 3 dummies in my code.
The manual describes a
feglm
parametercollin.tol
:... so you will have to increase
collin.tol
to makefeglm
drop variables for collinearity "on its own accord" (unless their respective t-statistic were indeed even smaller than the catch-all default 1e-10).