@@ -253,8 +253,8 @@ arx_fcast_epi_workflow <- function(
253253# ' the last day of data. For example, if the last day of data was 3 days ago,
254254# ' the ahead becomes `ahead+3`.
255255# ' - `"extend_lags"`: increase the lags so they're relative to the actual
256- # ' forecast date. For example, if the lags are `c(0,7, 14)` and the last day of
257- # ' data was 3 days ago, the lags become `c(3,10,17)`.
256+ # ' forecast date. For example, if the lags are `c(0, 7, 14)` and the last day of
257+ # ' data was 3 days ago, the lags become `c(3, 10, 17)`.
258258# ' @param warn_latency by default, `step_adjust_latency` warns the user if the
259259# ' latency is large. If this is `FALSE`, that warning is turned off.
260260# ' @param quantile_levels Vector or `NULL`. A vector of probabilities to produce
@@ -295,7 +295,7 @@ arx_args_list <- function(
295295 target_date = NULL ,
296296 adjust_latency = c(" none" , " extend_ahead" , " extend_lags" , " locf" ),
297297 warn_latency = TRUE ,
298- quantile_levels = c(0.05 , 0.5 , 0.95 ),
298+ quantile_levels = c(0.05 , 0.1 , 0.25 , 0.5 , 0.75 , 0.9 , 0.95 ),
299299 symmetrize = TRUE ,
300300 nonneg = TRUE ,
301301 quantile_by_key = character (0L ),
@@ -362,7 +362,7 @@ compare_quantile_args <- function(alist, tlist, train_method = c("qr", "grf")) {
362362 default_alist <- eval(formals(arx_args_list )$ quantile_levels )
363363 default_tlist <- switch (train_method ,
364364 " qr" = eval(formals(quantile_reg )$ quantile_levels ),
365- " grf" = c(. 1 , . 5 , .9 )
365+ " grf" = c(0.05 , 0. 1 , 0.25 , 0. 5 , 0.75 , 0.9 , 0.95 )
366366 )
367367 if (setequal(alist , default_alist )) {
368368 if (setequal(tlist , default_tlist )) {
0 commit comments