test_that("nest works", {
skip_if_not_installed("outbreaks")
data(ebola_sim_clean, package = "outbreaks")
dat <-
ebola_sim_clean$linelist |>
subset(!is.na(hospital)) |>
incidence_(date_of_onset, hospital, interval = "isoweek")
expect_identical(
nest(dat),
nest(as_tibble(dat), .by = c(count_variable, hospital))
)
expect_error(nest(dat, .by = "hospital"))
expect_error(nest(dat, .names_sep = "-"))
expect_snapshot(error = TRUE, nest(dat, .by = "hospital"))
expect_snapshot(error = TRUE, nest(dat, .names_sep = "-"))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.