Raw File
mae.R
mae = function(forecast, true)
{
    if (length(forecast) != length(true))
        stop("MAE: the lengths of input vectors must be the same.")
    err = mean(abs(true - forecast))
    return(round(err, 6))
}
back to top