Select columns from atom data
Usage
grab_select(grab, ..., .recursive = TRUE)
Arguments
- grab
A grab_atom or grab_bag.
- ...
Bare column names to include, and/or -name to exclude.
- .recursive
Logical. If TRUE, recurse through bag children.
Value
A transformed grab object.
Examples
g <- grab_atom("point", dfr(x = 0.2, y = 0.3, size = 2.5))
#> Error in grab_atom("point", dfr(x = 0.2, y = 0.3, size = 2.5)): could not find function "grab_atom"
grab_select(g, x, y)
#> Error in grab_select(g, x, y): could not find function "grab_select"