sigma(object, ...) ## Default S3 method: sigma(object, use.fallback = TRUE, ...)
object | a fitted model object. |
use.fallback | a logical argument passed to function nobs.default to get the number of observations from a fit. See nobs for its detail. |
... | additional arguments to be passed to future methods of this generic function. |
fit <- lm(y ~ ., data=Sdatasets::freeny) sigma(fit) sigma( lm(Fuel ~ Weight -1, data=Sdatasets::fuel.frame), use.fallback = FALSE )