``` r library(dplyr, warn.conflicts = FALSE) library(dtplyr) dt <- lazy_dt(data.frame(x = c("b", "a", "d", "c"))) dt %>% slice_max(x) %>% pull(x) #> Error: invalid argument to unary operator ``` <sup>Created on 2021-03-05 by the [reprex package](https://reprex.tidyverse.org) (v1.0.0)</sup>
Created on 2021-03-05 by the reprex package (v1.0.0)