add_between {faux} | R Documentation |
Add between factors
Description
Add between factors
Usage
add_between(.data, .by = NULL, ..., .shuffle = FALSE, .prob = NULL)
Arguments
.data |
the data frame |
.by |
the grouping column (groups by row if NULL) |
... |
the names and levels of the new factors |
.shuffle |
whether to assign cells randomly or in "order" |
.prob |
probability of each level, equal if NULL |
Value
data frame
Examples
add_random(subj = 4, item = 2) %>%
add_between("subj", condition = c("cntl", "test")) %>%
add_between("item", version = c("A", "B"))
[Package faux version 1.2.1 Index]