Description Usage Arguments Value Examples
View source: R/func_input_checks.R
Internal, auxillary functions
1 | func_input_checks(data, signal, response, side_variables)
|
data |
is an input object that should be a data.frame |
signal |
is a character object that indicates input columns of data |
response |
is a character vector that indicates output's columns of data |
side_variables |
is a character vector that indicates side variables' columns of data |
If all initial data is valid, string "ok" is retured. Otherwise, error is given.
1 2 3 4 5 6 7 8 9 10 11 | data=data_example1
SLEMI:::func_input_checks(data=data,signal="signal",response="response",side_variables="sideVar")
## Not run:
data=as.matrix(data_example1)
SLEMI:::func_input_checks(data=data,signal="signal",response="response",side_variables="sideVar")
data=data_example1
SLEMI:::func_input_checks(data=data,signal="input",response="response",side_variables="sideVar")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.