methods_overwrite {duckplyr} | R Documentation |
After calling methods_overwrite()
, all dplyr methods are redirected to duckplyr
for the duraton of the session, or until a call to methods_restore()
.
methods_overwrite()
methods_restore()
Called for their side effects.
tibble(a = 1:3) %>%
mutate(b = a + 1)
methods_overwrite()
tibble(a = 1:3) %>%
mutate(b = a + 1)
methods_restore()
tibble(a = 1:3) %>%
mutate(b = a + 1)