View source: R/climatological_forecaster.R
climate_args_list | R Documentation |
Climatological forecaster argument constructor
climate_args_list(
forecast_date = NULL,
forecast_horizon = 0:4,
time_type = c("epiweek", "week", "month", "day"),
center_method = c("median", "mean"),
window_size = 3L,
quantile_levels = c(0.05, 0.1, 0.25, 0.5, 0.75, 0.9, 0.95),
symmetrize = FALSE,
nonneg = TRUE,
quantile_by_key = character(0L),
...
)
forecast_date |
Date. The date from which the forecast is occurring.
The default
|
forecast_horizon |
Vector of integers giving the number of time steps,
in units of the |
time_type |
The duration over which time aggregation should be performed. |
center_method |
The measure of center to be calculated over the time window. |
window_size |
Scalar integer. How many time units on each side should
be included. For example, if |
quantile_levels |
Vector or |
symmetrize |
Logical. The default |
nonneg |
Logical. The default |
quantile_by_key |
Character vector. Groups residuals by listed keys
before calculating residual quantiles. See the |
... |
Further arguments passed to or from other methods (not currently used). |
A list containing updated parameter choices with class climate_alist
.
climatological_forecaster()
, step_climate()
climate_args_list()
climate_args_list(
forecast_horizon = 0:10,
quantile_levels = c(.01, .025, 1:19 / 20, .975, .99)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.