powered by
Opens a vectra1 file and returns a lazy query node. No data is read until collect() is called.
collect()
tbl(path)
A vectra_node object representing a lazy scan of the file.
vectra_node
Path to a .vtr file.
.vtr
f <- tempfile(fileext = ".vtr") write_vtr(mtcars, f) node <- tbl(f) print(node) unlink(f)
Run the code above in your browser using DataLab