Learn R Programming

vectra (version 0.6.2)

explain: Print the execution plan for a vectra query

Description

Shows the node types, column schemas, and structure of the lazy query plan.

Usage

explain(x, ...)

Value

Invisible x.

Arguments

x

A vectra_node object.

...

Ignored.

Examples

Run this code
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> filter(cyl > 4) |> select(mpg, cyl) |> explain()
unlink(f)

Run the code above in your browser using DataLab