This is an auxiliary function for controlling arguments for the incidence rate, used
internally to specify details in s_incidence_rate()
.
(proportion
)
confidence level of the interval.
(string
)normal
(default), normal_log
, exact
, or byar
for confidence interval type.
(string
)day
, week
, month
, or year
(default)
indicating time unit for data input.
(numeric(1)
)
number of patient-years to use when calculating adverse event rates.
A list of components with the same names as the arguments.
control_incidence_rate(0.9, "exact", "month", 100)
#> $conf_level
#> [1] 0.9
#>
#> $conf_type
#> [1] "exact"
#>
#> $input_time_unit
#> [1] "month"
#>
#> $num_pt_year
#> [1] 100
#>