Learn R Programming

BMisc (version 1.4.6)

toformula: Variable Names to Formula

Description

take a name for a y variable and a vector of names for x variables and turn them into a formula

Usage

toformula(yname, xnames)

Value

a formula

Arguments

yname

the name of the y variable

xnames

vector of names for x variables

Examples

Run this code
toformula("yvar", c("x1","x2"))

## should return yvar ~ 1
toformula("yvar", rhs.vars(~1))

Run the code above in your browser using DataLab