performance_mae: Mean Absolute Error of Models

View source: R/performance_mae.R

performance_maeR Documentation

Mean Absolute Error of Models

Description

Compute mean absolute error of models.

Usage

performance_mae(model, ...)

mae(model, ...)

Arguments

model

A model.

...

Arguments passed to or from other methods.

Value

Numeric, the mean absolute error of model.

Examples

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

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