R/aREA.R

Defines functions aREA

# Calculation of the average Relative Error of Aggregation as a sum of the
# absolute contributions of the individual deviations.
aREA <- function(x){
  y <- sum(abs(x))
  return(y)
}
michstrauch/TopHRU documentation built on May 22, 2019, 9:56 p.m.