measures (version 0.2)

MEDAE: Median of absolute errors

Description

Defined as: median(abs(response - truth)).

Usage

MEDAE(truth, response)

Arguments

truth

[numeric] vector of true values

response

[numeric] vector of predicted values

Examples

Run this code
# NOT RUN {
n = 20
set.seed(123)
truth = rnorm(n)
response = rnorm(n)
MEDAE(truth, response)
# }

Run the code above in your browser using DataLab