pkgdown/mathjax-config.html
R/explain.R
explain.Rd
Shows the node types, column schemas, and structure of the lazy query plan.
explain(x, ...)
A vectra_node object.
vectra_node
Ignored.
Invisible x.
x
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) tbl(f) |> filter(cyl > 4) |> select(mpg, cyl) |> explain() unlink(f)