find_combinations.formula: Generate all combinations of predictors of a formula.

Description Usage Arguments Value Author(s) Examples

View source: R/deprecated.R

Description

Generate all combinations of predictors of a formula.

Usage

1
2
## S3 method for class 'formula'
find_combinations(object, interaction = TRUE, fixed = NULL, ...)

Arguments

object

Formula.

interaction

Include interaction term.

fixed

Additional formula part to add at the beginning of each combination.

...

Arguments passed to or from other methods.

Value

list containing all combinations.

Author(s)

Dominique Makowski

Examples

1
2
3
4
5
6
7
library(psycho)

f <- as.formula("Y ~ A + B + C + D")
f <- as.formula("Y ~ A + B + C + D + (1|E)")
f <- as.formula("Y ~ A + B + C + D + (1|E) + (1|F)")

find_combinations(f)

neuropsychology/psycho.R documentation built on Jan. 25, 2021, 7:59 a.m.