Learn R Programming

performance (version 0.9.1)

performance_rse: Residual Standard Error for Linear Models

Description

Compute residual standard error of linear models.

Usage

performance_rse(model)

Value

Numeric, the residual standard error of 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.

Examples

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

Run the code above in your browser using DataLab