Learn R Programming

performance (version 0.8.0)

performance_rse: Residual Standard Error for Linear Models

Description

Compute residual standard error of linear models.

Usage

performance_rse(model)

Arguments

model

A model.

Value

Numeric, the residual standard error of model.

Details

The residual standard error is the square root of the residual sum of squares divided by the residual degrees of freedom.

Examples

Run this code
# NOT RUN {
data(mtcars)
m <- lm(mpg ~ hp + gear, data = mtcars)
performance_rse(m)
# }

Run the code above in your browser using DataLab