control_logistic {tern} | R Documentation |
Control function for logistic regression model fitting
Description
This is an auxiliary function for controlling arguments for logistic regression models.
conf_level
refers to the confidence level used for the Odds Ratio CIs.
Usage
control_logistic(response_definition = "response", conf_level = 0.95)
Arguments
response_definition |
( |
conf_level |
( |
Value
A list of components with the same names as the arguments.
Examples
# Standard options.
control_logistic()
# Modify confidence level.
control_logistic(conf_level = 0.9)
# Use a different response definition.
control_logistic(response_definition = "I(response %in% c('CR', 'PR'))")
[Package tern version 0.9.5 Index]