Nothing
#' Control function for incidence rate
#'
#' @description `r lifecycle::badge("stable")`
#'
#' This is an auxiliary function for controlling arguments for the incidence rate, used
#' internally to specify details in `s_incidence_rate()`.
#'
#' @inheritParams argument_convention
#' @param conf_type (`string`)\cr `normal` (default), `normal_log`, `exact`, or `byar`
#' for confidence interval type.
#' @param input_time_unit (`string`)\cr `day`, `week`, `month`, or `year` (default)
#' indicating time unit for data input.
#' @param num_pt_year (`numeric(1)`)\cr number of patient-years to use when calculating adverse event rates.
#'
#' @return A list of components with the same names as the arguments.
#'
#' @seealso [incidence_rate]
#'
#' @examples
#' control_incidence_rate(0.9, "exact", "month", 100)
#'
#' @export
control_incidence_rate <- function(conf_level = 0.95,
conf_type = c("normal", "normal_log", "exact", "byar"),
input_time_unit = c("year", "day", "week", "month"),
num_pt_year = 100) {
conf_type <- match.arg(conf_type)
input_time_unit <- match.arg(input_time_unit)
checkmate::assert_number(num_pt_year)
assert_proportion_value(conf_level)
list(
conf_level = conf_level,
conf_type = conf_type,
input_time_unit = input_time_unit,
num_pt_year = num_pt_year
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.