View source: R/performance_rse.R
performance_rse | R Documentation |
Compute residual standard error of linear models.
performance_rse(model)
model |
A model. |
The residual standard error is the square root of the residual sum of squares divided by the residual degrees of freedom.
Numeric, the residual standard error of model
.
data(mtcars)
m <- lm(mpg ~ hp + gear, data = mtcars)
performance_rse(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.