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 : Expressionmin(mpg) notsupportedinArrow; pullingdataintoR
# Atibble: 3 × 2cylmin_mpg
<dbl> <dbl>
1421.42617.83810.4
Reporter: Jonathan Keane / @jonkeane
Related issues:
Note: This issue was originally created as ARROW-14103. Please see the migration documentation for further details.
Both
min()andmax()work in non-grouped aggregation and elsewhere, but with a grouped aggregation, we get a not-supported error:Reporter: Jonathan Keane / @jonkeane
Related issues:
Note: This issue was originally created as ARROW-14103. Please see the migration documentation for further details.