X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2FF_Zero.R;h=ac970c47b80fb0e4fd196f444f41abde8fa90b0d;hb=2057c793ad9929ed5bef8663ea28b896c84df0fc;hp=247ab049def79dd8dd6b35f2e406be99704ecec6;hpb=469529710f56c790ae932b45d13fed2e34bcabf2;p=talweg.git diff --git a/pkg/R/F_Zero.R b/pkg/R/F_Zero.R index 247ab04..ac970c4 100644 --- a/pkg/R/F_Zero.R +++ b/pkg/R/F_Zero.R @@ -1,20 +1,12 @@ -#' @include Forecaster.R +#' Zero Forecaster #' -#' @title Zero Forecaster +#' Return 0 (and then adjust). Inherits \code{\link{Forecaster}} #' -#' @description Return 0 (and then adjust). Inherits \code{\link{Forecaster}} -ZeroForecaster = setRefClass( - Class = "ZeroForecaster", - contains = "Forecaster", +ZeroForecaster = R6::R6Class("ZeroForecaster", + inherit = Forecaster, - methods = list( - initialize = function(...) - { - callSuper(...) - }, - predictShape = function(today, memory, horizon, ...) - { - rep(0., horizon) - } + public = list( + predictShape = function(data, today, memory, horizon, ...) + rep(0, horizon) ) )