deviance.fixest {fixest} | R Documentation |
Returns the deviance from a fixest
estimation.
## S3 method for class 'fixest'
deviance(object, ...)
object |
A |
... |
Not currently used. |
Returns a numeric scalar equal to the deviance.
feols
, fepois
, feglm
, fenegbin
, feNmlm
.
est = feols(Petal.Length ~ Petal.Width, iris)
deviance(est)
est_pois = fepois(Petal.Length ~ Petal.Width, iris)
deviance(est_pois)