Code
duckdb_tibble(a = 1:3, .prudence = "stingy") %>% arrange(desc(a))
Condition
Error in `arrange()`:
! This operation cannot be carried out by DuckDB, and the input is a stingy duckplyr frame.
i Use `compute(prudence = "lavish")` to materialize to temporary storage and continue with duckplyr.
i See `vignette("prudence")` for other options.
Caused by error in `arrange()`:
! Function `desc()` does not map to `dplyr::desc()`.
Code
duckdb_tibble(a = 1:3, b = 4:6, .prudence = "stingy") %>% arrange(desc(a, b))
Condition
Error in `arrange()`:
! This operation cannot be carried out by DuckDB, and the input is a stingy duckplyr frame.
i Use `compute(prudence = "lavish")` to materialize to temporary storage and continue with duckplyr.
i See `vignette("prudence")` for other options.
Caused by error in `arrange()`:
! Function `desc()` must be called with exactly one argument.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.