formulate {mlr3misc}R Documentation

Create Formulas

Description

Given the left-hand side and right-hand side as character vectors, generates a new stats::formula().

Usage

formulate(lhs = NULL, rhs = NULL, env = NULL)

Arguments

lhs

:: character(1)
Left-hand side of formula.

rhs

:: character()
Right-hand side of formula. Multiple elements will be collapsed with " + ".

env

:: environment()
Environment for the new formula. Defaults to NULL.

Value

stats::formula().

Examples

formulate("Species", c("Sepal.Length", "Sepal.Width"))
formulate(rhs = c("Sepal.Length", "Sepal.Width"))

[Package mlr3misc version 0.1.3 Index]