powered by
Given the left-hand side and right-hand side as character vectors, generates a new stats::formula().
stats::formula()
formulate(lhs = character(), rhs = character(), env = NULL, quote = "right")
(character()) Left-hand side of formula. Multiple elements will be collapsed with " + ".
character()
" + "
(character()) Right-hand side of formula. Multiple elements will be collapsed with " + ".
(environment()) Environment for the new formula. Defaults to NULL.
environment()
NULL
(character(1)) Which side of the formula to quote? Subset of ("left", "right"), defaulting to "right".
character(1)
("left", "right")
"right"
stats::formula().
# NOT RUN { formulate("Species", c("Sepal.Length", "Sepal.Width")) formulate(rhs = c("Sepal.Length", "Sepal.Width")) # }
Run the code above in your browser using DataLab