print.fixest_multi {fixest} | R Documentation |
Print method for fixest_multi objects
Description
Displays summary information on fixest_multi objects in the R console.
Usage
## S3 method for class 'fixest_multi'
print(x, ...)
Arguments
x |
A |
... |
Other arguments to be passed to |
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
.
Examples
base = iris
names(base) = c("y", "x1", "x2", "x3", "species")
# Multiple estimation
res = feols(y ~ csw(x1, x2, x3), base, split = ~species)
# Let's print all that
res
[Package fixest version 0.12.1 Index]