storage by-rows
[talweg.git] / pkg / R / F_Zero.R
index fdfee83..f5d6b89 100644 (file)
@@ -3,11 +3,12 @@
 #' Zero Forecaster
 #'
 #' Return 0 (and then adjust). Inherits \code{\link{Forecaster}}
+#'
 ZeroForecaster = R6::R6Class("ZeroForecaster",
        inherit = Forecaster,
 
        public = list(
-               predictShape = function(today, memory, horizon, ...)
+               predictShape = function(data, today, memory, horizon, ...)
                        rep(0., horizon)
        )
 )