Extracts single elements from multiple fixest estimations.
## S3 method for class 'fixest_multi'x[[i]]
Arguments
x: A fixest_multi object, obtained from a fixest estimation leading to multiple results.
i: An integer scalar. The identifier of the estimation to extract.
Returns
A fixest object is returned.
Examples
base = iris
names(base)= c("y","x1","x2","x3","species")# Multiple estimationres = feols(y ~ csw(x1, x2, x3), base, split =~species)# The first estimationres[[1]]# The second one, etcres[[2]]
See Also
The main fixest estimation functions: feols, fepois, fenegbin, feglm, feNmlm. Tools for mutliple fixest estimations: summary.fixest_multi, print.fixest_multi, as.list.fixest_multi, sub-sub-.fixest_multi, sub-.fixest_multi.