extract
method for fixest
objectsextract
method for fixest
objects created by the
model fitting functions in the fixest package. The method can deal with
OLS (fitted by feols
) and GLM/MLE models (fitted by
feglm
and other functions).
# S4 method for fixest
extract(
model,
include.nobs = TRUE,
include.groups = TRUE,
include.rsquared = TRUE,
include.adjrs = TRUE,
include.proj.stats = TRUE,
include.deviance = TRUE,
include.loglik = TRUE,
include.pseudors = TRUE,
...
)
A statistical model object.
Report the number of observations?
Report the number of groups?
Report R^2? (OLS only)
Report adjusted R^2? (OLS only)
Include statistics for projected model? (OLS only)
Report the deviance? (GLM/MLE only)
Report the log likelihood? (GLM/MLE only)
Report Pseudo-R^2? (GLM/MLE only)
Custom parameters, which are handed over to the
coeftable
method for the fixest
object.
Christopher Poliquin, Philip Leifeld