performance_mae {performance} | R 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 down to |
Value
Numeric, the mean absolute error of model
.
Examples
data(mtcars)
m <- lm(mpg ~ hp + gear, data = mtcars)
performance_mae(m)
[Package performance version 0.12.2 Index]