Code
res <- select(df, x)
Message
Adding missing grouping variables: `g`
Code
expect_equal(df %>% select(a = c) %>% group_keys(), tibble::tibble(b = 2, a = 3) %>%
group_by(b) %>% group_keys())
Message
Adding missing grouping variables: `b`
Code
expect_equal(df %>% select(b = c) %>% group_keys(), tibble::tibble(a = 1, b = 3) %>%
group_by(a) %>% group_keys())
Message
Adding missing grouping variables: `a`
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.