Learn R Programming

performance (version 0.9.1)

performance_mae: Mean Absolute Error of Models

Description

Compute mean absolute error of models.

Usage

performance_mae(model, ...)

mae(model, ...)

Value

Numeric, the mean absolute error of model.

Arguments

model

A model.

...

Arguments passed to or from other methods.

Examples

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

Run the code above in your browser using DataLab