# "`-''-/").___..--''"`-._
# (`6_ 6 ) `-. ( ).`-.__.`) WE ARE ...
# (_Y_.)' ._ ) `._ `. ``-..-' PENN STATE!
# _ ..`--'_..-_/ /--'_.' ,'
# (il),-'' (li),' ((!.-'
#
#
# Author: Guido Cervone (cervone@psu.edu), Martina Calovi (mxc895@psu.edu), Laura Clemente-Harding (laura@psu.edu)
# Geoinformatics and Earth Observation Laboratory (http://geolab.psu.edu)
# Department of Geography and Institute for CyberScience
# The Pennsylvania State University
#
#' RAnEnExtra::verifyMAE
#'
#' RAnEnExtra::verifyMAE calculates mean absolute errors.
#'
#' To set the number of cores to use when parallel is used,
#' `options(mc.cores = 8)`.
#'
#' @details Bootstrap confidence interval is defaulted to 0.95.
#' To change this, use `options(RAnEnExtra_boot_conf = 0.9)`.
#'
#' @author Guido Cervone \email{cervone@@psu.edu}
#' @author Martina Calovi \email{mxc895@@psu.edu}
#' @author Laura Clemente-Harding \email{laura@@psu.edu}
#'
#' @param anen.ver A 4-dimensional array. This array is usually created from the `value` column of
#' the `analogs` member in the results of `RAnEn::generateAnalogs`. The dimensions should be
#' `[stations, times, lead times, members]`.
#' @param obs.ver A 3-dimensional array. The dimensions should be `[stations, times, lead times]`.
#' You can generate the array using `RAnEn::alignObservations`.
#' @param boot Whether to use bootstrap.
#' @param R The number of bootstrap replicates. Used by the function `boot::boot`.
#' @param na.rm Whether to remove NA values.
#' @param parallel Whether to use parallel processing.
#'
#' @md
#' @export
verifyMAE <- function(anen.ver, obs.ver, boot=F, R=1000, na.rm=T, parallel = F) {
stopifnot(length(dim(anen.ver)) == 4)
stopifnot(length(dim(obs.ver)) == 3)
if ( !identical(dim(anen.ver)[1:3], dim(obs.ver)[1:3]) ) {
cat("Error: Observations and Forecasts have incompatible dimensions.\n")
return(NULL)
}
obs <- matrix(obs.ver,ncol=dim(obs.ver)[3])
anen <- anen.mean(anen.ver, na.rm, parallel = parallel)
mae <- abs( (obs - anen) )
if ( boot == F) {
mae.tot <- mean(mae, na.rm=na.rm)
mae.mean <- apply( mae, 2, mean, na.rm=na.rm)
return(list(mean=mae.tot, flt=mae.mean, mat=mae))
} else {
boot <- apply( mae, 2, boot.fun.ver, R)
return(list(mean=mean(boot[1,],na.rm=na.rm), flt=boot[1,], mat=boot))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.