pkgdown/mathjax-config.html
R/tbl.R
tbl.Rd
Opens a vectra1 file and returns a lazy query node. No data is read until collect() is called.
collect()
tbl(path)
Path to a .vtr file.
.vtr
A vectra_node object representing a lazy scan of the file.
vectra_node
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) node <- tbl(f) print(node) unlink(f)