powered by
Like summarise() but allows expressions that return more than one row per group. Currently implemented via collect() fallback.
summarise()
collect()
reframe(.data, ...)
A data.frame (not a lazy node).
A vectra_node object.
vectra_node
Named expressions.
f <- tempfile(fileext = ".vtr") write_vtr(data.frame(g = c("a", "a", "b"), x = c(1, 2, 3)), f) tbl(f) |> group_by(g) |> reframe(range_x = range(x)) unlink(f)
Run the code above in your browser using DataLab