3 Comments
User's avatar
Shreyans's avatar

That means I can use only sql() based transformations in mutate/summarise and no dplyr/stringr functions?

Expand full comment
Amol Borkar's avatar

Forgot to mention that you can use duckplyr and use any function, since it will convert your table to data.frame without any extra code. But you will loose the speed benefits of duckdb.

Expand full comment
Amol Borkar's avatar

You could use base R functions such as sum() but to use stringr functions you need to call collect() first.

Expand full comment