plot.manual_strata function

Plot method for manual_strata object

Plot method for manual_strata object

Generates diagnostic plots for the product of a stratification by manual_stratify. There are two plot types:

  1. "SR" (default) - produces a scatter plot of strata by size and treat:control ratio
  2. "hist" - produces a histogram of propensity scores within a stratum.

Note that residual plots and AC plots are not supported for manual_strata objects because no prognostic model is fit.

## S3 method for class 'manual_strata' plot(x, type = "SR", label = FALSE, stratum = "all", propensity, ...)

Arguments

  • x: a manual_strata object returned by manual_stratify
  • type: string giving the plot type (default = "SR"). Other option is "hist"
  • label: ignored unless type = "SR". If TRUE, a clickable plot is produced. The user may click on any number of strata and press finish to have those strata labeled. Note: uses identify, which may not be supported on some devices
  • stratum: ignored unless type = "hist". A number specifying which stratum to plot.
  • propensity: ignored unless type = "hist". Specifies propensity score information for plots where this is required. Accepts either a vector of propensity scores, a glm model for propensity scores, or a formula for fitting a propensity score model.
  • ...: other arguments

Examples

dat <- make_sample_data() m.strat <- manual_stratify(dat, treat ~ C1) plot(m.strat) # makes size-ratio scatter plot plot(m.strat, type = "hist", propensity = treat ~ X1, stratum = 1)
  • Maintainer: Rachael C. Aikens
  • License: GPL-3
  • Last published: 2022-03-31