I am working with fixest package. Great results so far.
My data could be set as a panel. Is there any way for fixest to run run panel data analysis.
My model looks something like this:
model <- fenegbin(incident~ treatdummy +
poverty +
industry +
rural +
offset(log(pop))|state,
se= "HC1",
data=subset(df1))
Best,
Yes. You can use the
panel.id
argument in your estimation function to get access to a bunch of panel methods.From the documentation:
See here for more details.