X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2FF_Average.R;h=c28125ef0a8d6d9c64d42037bde6bc9737bf6f3b;hb=546b0cb65870355a2a2c3705c91418570499d3a6;hp=5058825c7d9fa7916f1aa4ead566f0b5c5a06e2e;hpb=af3b84f4cacade7d83221ca0249b546c50ddf340;p=talweg.git diff --git a/pkg/R/F_Average.R b/pkg/R/F_Average.R index 5058825..c28125e 100644 --- a/pkg/R/F_Average.R +++ b/pkg/R/F_Average.R @@ -4,11 +4,12 @@ #' #' Return the (pointwise) average of the all the (similar) centered day curves #' in the past. Inherits \code{\link{Forecaster}} +#' AverageForecaster = R6::R6Class("AverageForecaster", 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) @@ -17,7 +18,7 @@ AverageForecaster = R6::R6Class("AverageForecaster", repeat { { - serie_on_horizon = private$.data$getCenteredSerie(index)[1:horizon] + serie_on_horizon = data$getCenteredSerie(index)[1:horizon] index = index - 7 }; if (!any(is.na(serie_on_horizon)))