pull_dt {tidyfst} | R Documentation |
Pull out a single variable
Description
Extract vector from data.frame, works likt '[['. Analogous function for pull
in dplyr
Usage
pull_dt(.data, col)
Arguments
.data |
data.frame |
col |
A name of column or index (should be positive). |
Value
vector
See Also
Examples
mtcars %>% pull_dt(2)
mtcars %>% pull_dt(cyl)
mtcars %>% pull_dt("cyl")
[Package tidyfst version 1.7.9 Index]