my_mae: my_mse

View source: R/SupportFunctions.R

my_maeR Documentation

my_mse

Description

Returns the mean absolute error between two vectors

Usage

my_mae(x, y)

Arguments

x

vector

y

vector

Value

Mean absolute error between the two vectors x and y

Examples

#Simulate two vectors of i.i.d.~standard normal data
set.seed(456)
x <- rnorm(100)
y <- rnorm(100)
#Compute the mean absolute error between both vectors
my_mae(x,y)

ambit documentation built on Aug. 19, 2022, 5:19 p.m.