get_by {Tplyr} | R Documentation |
Set or return by layer binding
Description
Set or return by layer binding
Usage
get_by(layer)
set_by(layer, by)
Arguments
layer |
A |
by |
A string, a variable name, or a list of variable names supplied
using |
Value
For get_by
, the by
binding of the supplied layer. For
set_by
the modified layer environment.
Examples
# Load in pipe
library(magrittr)
iris$Species2 <- iris$Species
lay <- tplyr_table(iris, Species) %>%
group_count(Species) %>%
set_by(vars(Species2, Sepal.Width))
[Package Tplyr version 1.2.1 Index]