X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2FF_Average.R;h=8a331115960411a8b71e1962168ba0bb309ecd98;hb=102bcfda4afbb5cfee885cbee0f55545624168fd;hp=abc88be0db29e610e420e7e3a8d0b3a2751e728c;hpb=25b75559e2d9bf84e2de35b851d93fefdae36e17;p=talweg.git diff --git a/pkg/R/F_Average.R b/pkg/R/F_Average.R index abc88be..8a33111 100644 --- a/pkg/R/F_Average.R +++ b/pkg/R/F_Average.R @@ -1,14 +1,21 @@ -#' @include Forecaster.R -#' #' Average Forecaster #' -#' Return the (pointwise) average of the all the (similar) centered day curves -#' in the past. Inherits \code{\link{Forecaster}} +#' Pointwise average of all the series of the same day of week in the past. +#' +#' For example, if the current day (argument "today") is a tuesday, then all series +#' corresponding to wednesdays in the past (until the beginning or memory limit) are +#' averaged to provide a smooth prediction. This forecast will most of the time be wrong, +#' but will also look plausible enough. +#' +#' @docType class +#' @format R6 class, inherits Forecaster +#' @alias F_Average +#' AverageForecaster = R6::R6Class("AverageForecaster", - inherit = "Forecaster", + inherit = Forecaster, public = list( - predictShape = function(today, memory, horizon, ...) + predictShape = function(data, today, memory, horizon, ...) { avg = rep(0., horizon) first_day = max(1, today-memory)