on the way back without realtime
[talweg.git] / pkg / R / F_Zero.R
... / ...
CommitLineData
1#' Zero Forecaster
2#'
3#' Return 0 (and then adjust). Inherits \code{\link{Forecaster}}
4#'
5ZeroForecaster = R6::R6Class("ZeroForecaster",
6 inherit = Forecaster,
7
8 public = list(
9 predictShape = function(data, today, memory, horizon, ...)
10 rep(0, horizon)
11 )
12)