almost finished debug
[talweg.git] / pkg / R / F_Average.R
index abc88be..5058825 100644 (file)
@@ -5,7 +5,7 @@
 #' 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",
+       inherit = Forecaster,
 
        public = list(
                predictShape = function(today, memory, horizon, ...)
@@ -17,7 +17,7 @@ AverageForecaster = R6::R6Class("AverageForecaster",
                        repeat
                        {
                                {
-                                       serie_on_horizon = data$getCenteredSerie(index)[1:horizon]
+                                       serie_on_horizon = private$.data$getCenteredSerie(index)[1:horizon]
                                        index = index - 7
                                };
                                if (!any(is.na(serie_on_horizon)))