Skip to content

Commit dd6b564

Browse files
committed
fu styler
1 parent a37df95 commit dd6b564

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

tests/testthat/test-layer_threshold_preds.R

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ test_that("thresholds additional columns", {
5858
p <- p %>%
5959
dplyr::mutate(.quantiles = nested_quantiles(.pred_distn)) %>%
6060
tidyr::unnest(.quantiles)
61-
expect_equal(round(p$values, digits = 3),
62-
c(0.180, 0.180, 0.31, 0.180, 0.180, .18, 0.310, .31, .31))
61+
expect_equal(
62+
round(p$values, digits = 3),
63+
c(0.180, 0.180, 0.31, 0.180, 0.180, .18, 0.310, .31, .31)
64+
)
6365
expect_equal(p$quantile_levels, rep(c(.1, 0.5, .9), times = 3))
6466
})

vignettes/epipredict.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function:
237237
```{r, eval = FALSE}
238238
arx_args_list(
239239
lags = c(0L, 7L, 14L), ahead = 7L, n_training = Inf,
240-
forecast_date = NULL, target_date = NULL,
240+
forecast_date = NULL, target_date = NULL,
241241
quantile_levels = c(0.05, 0.1, 0.25, 0.5, 0.75, 0.9, 0.95),
242242
symmetrize = TRUE, nonneg = TRUE, quantile_by_key = character(0L),
243243
nafill_buffer = Inf

0 commit comments

Comments
 (0)