calc_coverage: 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.
A tibble containing the number of simulation iterations, performance criteria estimate(s)
and the associated MCSE.
Arguments
data
data frame or tibble containing the simulation results.
lower_bound
vector or name of column from data containing lower bounds of confidence intervals.
upper_bound
vector or name of column from data containing upper bounds of confidence intervals.
true_param
vector or name of column from data containing
corresponding true parameters.
criteria
character or character vector indicating the performance
criteria to be calculated, with possible options "coverage" and "width".
winz
numeric value for winsorization constant. If set to a finite
value, estimates will be winsorized at the constant multiple of the
inter-quartile range below the 25th percentile or above the 75th percentile
of the distribution. For instance, setting winz = 3 will
truncate estimates that fall below P25 - 3 * IQR or above P75 + 3 * IQR.