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
library(conflicted)
library(duckplyr)
#> Loading required package: dplyr#> #> Attaching package: 'dplyr'#> The following objects are masked from 'package:stats':#> #> filter, lag#> The following objects are masked from 'package:base':#> #> intersect, setdiff, setequal, union#> ✔ Overwriting dplyr methods with duckplyr methods.#> ℹ Turn off with `duckplyr::methods_restore()`.
conflict_prefer("filter", "dplyr", quiet=TRUE)
mtcars|>
mutate (name= rownames(mtcars)) |>
summarize(
.by=cyl,
disp= mean(disp, na.rm=TRUE),
sd= sd(disp)
)
#> Error processing duckplyr query with DuckDB, falling back to dplyr.#> Caused by error in `duckdb_rel_from_df()`:#> ! Need data frame without row names to convert to relational, got#> character row names.#> Error processing duckplyr query with DuckDB, falling back to dplyr.#> Caused by error in `duckdb_rel_from_df()`:#> ! Need data frame without row names to convert to relational, got#> character row names.#> cyl disp sd#> 1 6 183.3143 NA#> 2 4 105.1364 NA#> 3 8 353.1000 NA
Created on 2025-02-11 with reprex v2.1.1
The text was updated successfully, but these errors were encountered: