calc_coverage {simhelpers} | R Documentation |
Calculate confidence interval coverage, width and MCSE
Description
Calculates confidence interval coverage and width. The function also calculates the associated Monte Carlo standard errors. The confidence interval percentage is based on how you calculated the lower and upper bounds.
Usage
calc_coverage(
data,
lower_bound,
upper_bound,
true_param,
criteria = c("coverage", "width")
)
Arguments
data |
data frame or tibble containing the simulation results. |
lower_bound |
Vector or name of column from |
upper_bound |
Vector or name of column from |
true_param |
Vector or name of column from |
criteria |
character or character vector indicating the performance criteria to be calculated. |
Value
A tibble containing the number of simulation iterations, performance criteria estimate(s) and the associated MCSE.
Examples
calc_coverage(data = t_res, lower_bound = lower_bound,
upper_bound = upper_bound, true_param = true_param)
[Package simhelpers version 0.2.1 Index]