estfun.fixest {fixest} | R Documentation |
Extracts the scores from a fixest estimation
Description
Extracts the scores from a fixest estimation.
Usage
## S3 method for class 'fixest'
estfun(x, ...)
Arguments
x |
A |
... |
Not currently used. |
Value
Returns a matrix of the same number of rows as the number of observations used for the estimation, and the same number of columns as there were variables.
Examples
data(iris)
est = feols(Petal.Length ~ Petal.Width + Sepal.Width, iris)
head(estfun(est))
[Package fixest version 0.12.1 Index]