R/assess.R

Defines functions assess

Documented in assess

#' assessment function!
#' assess a time series
#' @param x the time series
#' @param ... the normal arguments to the fcst function. NOTE: we must put x first or name all of our arguments. This will be fixed
#' @return the ASE
#' @export
assess <- function(x, ...) {
  bcast <- fcst(x = x,..., lastn = T)
  ASE  <- ase(x, bcast)
  return(ASE)
}
josephsdavid/tswgewrapped documentation built on July 31, 2020, 9:36 a.m.