Nothing
test_that("preprocess_table errors with duplicate columns", {
df <- read_one_table("../data/preproc.csv")
mock_preproc_spec <- list(
grouping_column = "id",
preprocess = list(
on = c("id", "group"),
retain_min = "start_date",
retain_max = "start_date"
)
)
expect_error(
preprocess_table(df, mock_preproc_spec),
regexp = "multiple"
)
})
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.