Code
df <- tibble(g = c(1, 2), x = c(1, 2))
(expect_error(df %>% duckplyr_distinct(aa, x)))
Output
<error/rlang_error>
Error in `distinct()`:
! Must use existing variables.
x `aa` not found in `.data`.
Code
(expect_error(df %>% duckplyr_distinct(aa, bb)))
Output
<error/rlang_error>
Error in `distinct()`:
! Must use existing variables.
x `aa` not found in `.data`.
x `bb` not found in `.data`.
Code
(expect_error(df %>% duckplyr_distinct(.data$aa)))
Output
<error/rlang_error>
Error in `distinct()`:
! Must use existing variables.
x `aa` not found in `.data`.
Code
(expect_error(df %>% duckplyr_distinct(y = a + 1)))
Output
<error/dplyr:::mutate_error>
Error in `distinct()`:
i In argument: `y = a + 1`.
Caused by error:
! object 'a' not found
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.