View source: R/verbs_utility.R
| pull | R Documentation |
Extract a single column as a vector
pull(.data, var = -1)
.data |
A |
var |
Column name (unquoted) or positive integer position. |
A vector.
f <- tempfile(fileext = ".vtr")
write_vtr(mtcars, f)
tbl(f) |> pull(mpg) |> head()
unlink(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.