| tbl | R Documentation |
Opens a vectra1 file and returns a lazy query node. No data is read until
collect() is called.
tbl(path)
path |
Path to a |
A vectra_node object representing a lazy scan of the file.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
node <- tbl(f)
print(node)
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.