Nothing
test_that("only_if works", {
d <- tibble::as_tibble(mtcars)
d_true <- d %>% dplyr::filter(mpg > 25)
expect_equal(d %>% only_if(TRUE)(dplyr::filter)(mpg > 25), d_true)
expect_equal(d %>% only_if(FALSE)(dplyr::filter)(mpg > 25), d)
})
test_that("append_summary works", {
set.seed(9416)
df <- tibble::tibble(group = letters[1:5],
x = sample(1:10, 5, TRUE),
y = sample(1:10, 5, TRUE),
z = sample(1:10, 5, TRUE))
row_sums <- df %>%
dplyr::select(-group) %>%
dplyr::summarize_all(sum)
row_medians <- df %>%
dplyr::select(-group) %>%
dplyr::summarize_all(median)
col_sums <- df %>%
dplyr::select(-group) %>%
tibble::rowid_to_column(var = "rowid") %>%
tidyr::gather(key = "col", value = "val", -rowid) %>%
dplyr::group_by(rowid) %>%
dplyr::summarize(sum = sum(val)) %>%
dplyr::select(sum)
col_medians <- df %>%
dplyr::select(-group) %>%
tibble::rowid_to_column(var = "rowid") %>%
tidyr::gather(key = "col", value = "val", -rowid) %>%
dplyr::group_by(rowid) %>%
dplyr::summarize(median = stats::median(val)) %>%
dplyr::select(median)
expect_equal(append_summary(df, x, y, z, row = FALSE, col = FALSE), df)
expect_equal(append_summary(df, x, y, z, row = TRUE, col = FALSE),
dplyr::bind_rows(df, row_sums))
expect_equal(append_summary(df, x, y, z, row = FALSE, col = TRUE),
dplyr::bind_cols(df, col_sums))
expect_equal(append_summary(df, x, y, z, col = FALSE, .f = stats::median),
dplyr::bind_rows(df, row_medians))
expect_equal(append_summary(df, x, y, z),
dplyr::bind_cols(df, col_sums) %>%
dplyr::bind_rows(
dplyr::mutate(row_sums, sum = sum(col_sums$sum))
))
})
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.