X-Git-Url: https://git.auder.net/?p=talweg.git;a=blobdiff_plain;f=pkg%2FR%2FF_Average.R;h=8f81747fbca9a863a0ac9c882dca87298a6bb63c;hp=7ec4e9005e3f2583ea837f181290624a18c34bc3;hb=3ddf1c12af0c167fe7d3bb59e63258550270cfc5;hpb=ff5df8e310b73883565761ab4b1aa5a0672e9f27 diff --git a/pkg/R/F_Average.R b/pkg/R/F_Average.R index 7ec4e90..8f81747 100644 --- a/pkg/R/F_Average.R +++ b/pkg/R/F_Average.R @@ -1,9 +1,16 @@ -#' @include Forecaster.R -#' #' Average Forecaster #' -#' Return the (pointwise) average of the all the (similar) centered day curves -#' in the past. Inherits \code{\link{Forecaster}} +#' Pointwise average of all the series of the same day of week in the past. +#' +#' For example, if the current day (argument "today") is a tuesday, then all series +#' corresponding to wednesdays in the past (until the beginning or memory limit) are +#' averaged to provide a smooth prediction. This forecast will most of the time be wrong, +#' but will also look plausible enough. +#' +#' @docType class +#' @format R6 class, inherits Forecaster +#' @aliases F_Average +#' AverageForecaster = R6::R6Class("AverageForecaster", inherit = Forecaster,