check_formulas {LDATS} | R Documentation |
Check that formulas vector is proper and append the response variable
Description
Check that the vector of formulas is actually formatted
as a vector of formula
objects and that the
predictor variables are all included in the document covariate table.
Usage
check_formulas(formulas, document_covariate_table, control = list())
Arguments
formulas |
Vector of the formulas to evaluate. |
document_covariate_table |
Document covariate table used to evaluate the availability of the data required by the formula inputs. |
control |
A |
Value
An error message is thrown if formulas
is
not proper, else NULL
.
Examples
data(rodents)
check_formulas(~ 1, rodents$document_covariate_table)
[Package LDATS version 0.3.0 Index]