work on doc
authorBenjamin Auder <benjamin.auder@somewhere>
Fri, 7 Apr 2017 14:41:12 +0000 (16:41 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Fri, 7 Apr 2017 14:41:12 +0000 (16:41 +0200)
pkg/R/F_Average.R
pkg/R/F_Neighbors.R
pkg/R/F_Persistence.R
pkg/R/F_Zero.R
pkg/R/computeForecast.R

index a5e3c3e..d7febd4 100644 (file)
@@ -1,9 +1,10 @@
 #' 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 series of the same (day of week) days in the past.
+#'
+#' @format R6 class, inherits Forecaster
+#' @alias F_Average
 #'
-#' @export
 AverageForecaster = R6::R6Class("AverageForecaster",
        inherit = Forecaster,
 
index 52c2b35..7e0cdd2 100644 (file)
@@ -1,7 +1,13 @@
 #' Neighbors Forecaster
 #'
-#' Predict tomorrow as a weighted combination of "futures of the past" days.
-#' Inherits \code{\link{Forecaster}}
+#' Predict next serie as a weighted combination of "futures of the past" days,
+#' where days in the past are chosen and weighted according to some similarity measures.
+#' See 'details' section.
+#'
+#' TODO: details.
+#'
+#' @format R6 class, inherits Forecaster
+#' @alias F_Neighbors
 #'
 NeighborsForecaster = R6::R6Class("NeighborsForecaster",
        inherit = Forecaster,
index ad83449..754df07 100644 (file)
@@ -1,7 +1,10 @@
 #' Persistence Forecaster
 #'
-#' Return the last centered (similar) day curve.
-#' Inherits \code{\link{Forecaster}}
+#' Look for the most recent similar day in the past, and return its corresponding curve.
+#' "Similar day" means "same day in the week".
+#'
+#' @format R6 class, inherits Forecaster
+#' @alias F_Persistence
 #'
 PersistenceForecaster = R6::R6Class("PersistenceForecaster",
        inherit = Forecaster,
index ac970c4..3c46f2c 100644 (file)
@@ -1,6 +1,9 @@
 #' Zero Forecaster
 #'
-#' Return 0 (and then adjust). Inherits \code{\link{Forecaster}}
+#' Flat prediction of next series of 'horizon' values.
+#'
+#' @format R6 class, inherits Forecaster
+#' @alias F_Zero
 #'
 ZeroForecaster = R6::R6Class("ZeroForecaster",
        inherit = Forecaster,
index 4bab811..1d69777 100644 (file)
@@ -1,6 +1,8 @@
 #' Compute forecast
 #'
-#' Predict time-series curves for the selected days indices (lines in data).
+#' Predict time-series curves for the selected days indices.
+#'
+#' TODO: details
 #'
 #' @param data Object of type \code{Data}, output of \code{getData()}.
 #' @param indices Indices where to forecast (the day after); integers relative to the