View source: R/verbs_grouping.R
| group_by | R Documentation |
Group a vectra query by columns
group_by(.data, ...)
.data |
A |
... |
Grouping column names (unquoted). |
A vectra_node with grouping information stored.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> group_by(cyl) |> summarise(avg = mean(mpg)) |> collect()
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.