Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Duplicate
-
None
-
None
Description
Both min() and max() work in non-grouped aggregation and elsewhere, but with a grouped aggregation, we get a not-supported error:
> library(arrow) > library(dplyr) > > InMemoryDataset$create(mtcars) %>% + group_by(cyl) %>% + summarise(min_mpg = min(mpg)) Warning: Error : Expression min(mpg) not supported in Arrow; pulling data into R # A tibble: 3 × 2 cyl min_mpg <dbl> <dbl> 1 4 21.4 2 6 17.8 3 8 10.4
Attachments
Issue Links
- duplicates
-
ARROW-13502 [R] Bindings for min/max aggregation
- Resolved