simple question:
Can I extract the final degrees of freedom after a feols
estimation using the fixest
package?
res = feols(Sepal.Length ~ Sepal.Width + Petal.Length | Species, iris)
summary(res)
I know that there are many fancy ways to specify the df in fixest, but I'd just want the result (depending on which option I choose).
For example in the lfe
package using felm
, I can do so easily like this:
res = felm(Sepal.Length ~ Sepal.Width + Petal.Length | Species | 0 | 0, iris)
res$df
Thanks!