pkgdown/mathjax-config.html

Skip to contents

Remove grouping from a vectra query

Usage

ungroup(x, ...)

Arguments

x

A vectra_node object.

...

Ignored.

Value

An ungrouped vectra_node.

Examples

f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> group_by(cyl) |> ungroup()
unlink(f)