Nothing
test_that("`get_biomarker_levels()` works", {
xs_data <- load_pop_data(serocalculator_example("example_pop_data.rds"))
biomarker_levels <- xs_data %>% get_biomarker_levels()
expected_levels <- c("HlyE_IgA", "HlyE_IgG")
expect_equal(object = biomarker_levels, expected = expected_levels)
})
test_that("`get_id()` works", {
xs_data <- load_pop_data(serocalculator_example("example_pop_data.rds"))
xs_data %>%
get_id() %>%
sort() %>%
expect_snapshot_value(style = "deparse")
})
test_that("`get_biomarker_names_var() works", {
biomarker_names_var <-
load_pop_data(serocalculator_example("example_pop_data.rds")) %>%
get_biomarker_names_var()
expect_equal(object = biomarker_names_var, expected = "antigen_iso")
})
test_that("`set_age()` detects partial matches", {
serocalculator_example("example_pop_data.rds")%>%
load_pop_data(age = "age$") %>%
expect_warning(class = "missing variable")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.