You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
options(conflicts.policy=list(warn=FALSE))
library(duckplyr)
#> Loading required package: dplyr#> ✔ Overwriting dplyr methods with duckplyr methods.#> ℹ Turn off with `duckplyr::methods_restore()`.data<-
duckdb_tibble(a=2) |>
mutate(b=3)
computed_data<-data|>
compute(name="computed_data")
sql_data<-
read_sql_duckdb("SELECT *, a * b AS c FROM computed_data")
sql_data#> # A duckplyr data frame: 3 variables#> a b c#> <dbl> <dbl> <dbl>#> 1 2 3 6
compute()
The text was updated successfully, but these errors were encountered: