plot.episensr.booted: Plot of bootstrap simulation output for selection and...

View source: R/plot.episensr.booted.R

plot.episensr.bootedR Documentation

Plot of bootstrap simulation output for selection and misclassification bias

Description

This takes an episensr bootstrap object and produces the plot of bootstrap replicates for selection or misclassification bias of the variable of interest, either relative risk or odds ratio. It also draws the confidence interval.

Usage

## S3 method for class 'episensr.booted'
plot(x, association = c("rr", "or"), ...)

Arguments

x

An object of class "episensr.booted" returned from the episensr bootstrap generation function.

association

Choice between bias adjusted relative risk (rr) and odds ratio (or).

...

Other unused arguments.

See Also

boot.bias, boot, selection, misclassification

Examples

misclass_eval <- misclassification(matrix(c(215, 1449, 668, 4296),
dimnames = list(c("Breast cancer+", "Breast cancer-"),
c("Smoker+", "Smoker-")),
nrow = 2, byrow = TRUE),
type = "exposure",
bias_parms = c(.78, .78, .99, .99))

set.seed(123)
misclass_boot <- boot.bias(misclass_eval)
plot(misclass_boot, association = "rr")


episensr documentation built on Aug. 30, 2023, 5:09 p.m.