list_input_variables: List the basic input variables of a formula

Description Usage Arguments Value Examples

Description

Lists all unique fundamental input variables from formula passed to this function.

Usage

1
list_input_variables(input_formula)

Arguments

input_formula

A one or two-sided formula.

Value

Returns a vector of all unique basic variable names.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (input_formula)
{
    library(nlme)
    Input_Func <- as.formula(paste(nlme::splitFormula(input_formula)))
    InputVarList <- all.vars(Input_Func)
    return(InputVarList)
  }

taalbrecht/MultiEqOptimizer documentation built on May 31, 2019, 12:51 a.m.