Nothing
test_that("preprocess_table", {
df <- read_one_table("../data/preproc.csv")
# Because preprocess_table() requires a spec rather than taking keyword
# arguments, we have to make a fake one here
mock_preproc_spec <- list(
grouping_column = "id",
preprocess = list(
on = c("id", "group"),
replace_with_sum = "value"
)
)
preprocessed <- preprocess_table(df, mock_preproc_spec)
alternative <- df %>%
group_by(id, group) %>%
mutate(value = sum(value)) %>%
ungroup()
expect_equal(preprocessed, alternative)
})
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.