Skip to content

Commit

Permalink
style: styler (GHA)
Browse files Browse the repository at this point in the history
  • Loading branch information
brookslogan committed Nov 12, 2024
1 parent 6db1391 commit 1627870
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/testthat/test-epi_slide.R
Original file line number Diff line number Diff line change
Expand Up @@ -764,15 +764,17 @@ test_that("epi_slide_opt output naming features", {
as_epi_df() %>%
group_by(geo_value)
multi_columns_weekly <- dplyr::bind_rows(
dplyr::tibble(geo_value = "ak", time_value = test_date + 7*(1:200), value = 1:200, value2 = -1:-200),
dplyr::tibble(geo_value = "al", time_value = test_date + 7*(1:5), value = -(1:5), value2 = 1:5)
dplyr::tibble(geo_value = "ak", time_value = test_date + 7 * (1:200), value = 1:200, value2 = -1:-200),
dplyr::tibble(geo_value = "al", time_value = test_date + 7 * (1:5), value = -(1:5), value2 = 1:5)
) %>%
as_epi_df() %>%
group_by(geo_value)
yearmonthly <-
tibble::tibble(geo_value = 1,
time_value = tsibble::make_yearmonth(2000, 1) + 1:30 - 1,
value = 1:30 %% 2 == 0) %>%
tibble::tibble(
geo_value = 1,
time_value = tsibble::make_yearmonth(2000, 1) + 1:30 - 1,
value = 1:30 %% 2 == 0
) %>%
as_epi_df() %>%
group_by(geo_value)

Expand Down

0 comments on commit 1627870

Please sign in to comment.