performance_rse: Residual Standard Error for Linear Models

View source: R/performance_rse.R

performance_rseR Documentation

Residual Standard Error for Linear Models

Description

Compute residual standard error of linear models.

Usage

performance_rse(model)

Arguments

model

A model.

Details

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

Value

Numeric, the residual standard error of model.

Examples

data(mtcars)
m <- lm(mpg ~ hp + gear, data = mtcars)
performance_rse(m)

performance documentation built on Nov. 2, 2023, 5:48 p.m.