print.fixest {fixest} | R Documentation |
fixest
objects.This function is very similar to usual summary
functions as it provides the table of coefficients along with other information on the fit of the estimation. The type of output is customizable by the user (using function setFixest_print.type
).
## S3 method for class 'fixest' print(x, n, type = getFixest_print.type(), ...)
x |
A |
n |
Integer, number of coefficients to display. By default, only the first 8 coefficients are displayed if |
type |
Either |
... |
Other arguments to be passed to |
Laurent Berge
See also the main estimation functions femlm
, feols
or feglm
. Use summary.fixest
to see the results with the appropriate standard-errors, fixef.fixest
to extract the cluster coefficients, and the functions esttable
and esttex
to visualize the results of multiple estimations.
# Load trade data data(trade) # We estimate the effect of distance on trade # => we account for 3 fixed-effects (FEs) est_pois = femlm(Euros ~ log(dist_km)|Origin+Destination+Product, trade) # displaying the results # (by default SEs are clustered if FEs are used) print(est_pois) # By default the coefficient table is displayed. # If the user wished to display only the coefficents, use option type: print(est_pois, type = "coef") # To permanently display coef. only, use setFixest_print.type: setFixest_print.type("coef") est_pois # back to default: setFixest_print.type("table")