setFixest_print.type {fixest} | R Documentation |
print
does to fixest
estimationsSets/gets the default behavior of the print
method for non-summary fixest
estimations. Default is to display the coefficients table but it can be changed to displaying only the coefficients.
setFixest_print.type(x) getFixest_print.type()
x |
Either |
Laurent Berge
res = feols(Sepal.Length ~ Sepal.Width + Petal.Length, base) # default is coef. table: res # can be changed to only the coefficients: print(res, type = "coef") setFixest_print.type("coef") res # only the coefs