Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

MAE

Mean Absolute Error


Description

The mean of absolute errors between real values and predictions.

Usage

MAE(Y, Ypred)

Arguments

Y

a real vector with the values of the output

Ypred

a real vector with the predicted values at the same inputs

Value

a real which represents the mean of the absolute errors between the real and the predicted values:

MAE = 1/n * [|Y(x1)-Ypred(x1)|+...+|Y(xn)-Ypred(xn)|]

where xi denotes the points of the experimental design, Y the output of the computer code and Ypred the fitted model.

Author(s)

D. Dupuy

See Also

other quality criteia as RMSE and RMA.

Examples

X	<- seq(-1,1,0.1)
Y	<- 3*X + rnorm(length(X),0,0.5)
Ypred	<- 3*X
MAE(Y,Ypred)

DiceEval

Construction and Evaluation of Metamodels

v1.5
GPL-3
Authors
D. Dupuy and C. Helbert
Initial release
2020-05-04

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.