Skip to contents

Methods to extracts the coefficients table and its sub-components from an estimation.

Usage

coeftable(object, ...)

se(object, ...)

pvalue(object, ...)

tstat(object, ...)

Arguments

object

An estimation (fitted model object), e.g. a fixest object.

...

Other arguments to the methods.

Value

Returns a matrix (coeftable) or vectors.

See also

Please look at the coeftable.fixest page for more detailed information.

Examples


est = lm(mpg ~ cyl, mtcars)
coeftable(est)
#>             Estimate Std. Error   t value     Pr(>|t|)
#> (Intercept) 37.88458  2.0738436 18.267808 8.369155e-18
#> cyl         -2.87579  0.3224089 -8.919699 6.112687e-10