View source: R/measure_sensitivity.R
| measure_sensitivity | R Documentation | 
Compute nonparametric estimate of sensitivity.
measure_sensitivity(
  fitted_values,
  y,
  full_y = NULL,
  C = rep(1, length(y)),
  Z = NULL,
  ipc_weights = rep(1, length(y)),
  ipc_fit_type = "external",
  ipc_eif_preds = rep(1, length(y)),
  ipc_est_type = "aipw",
  scale = "logit",
  na.rm = FALSE,
  nuisance_estimators = NULL,
  a = NULL,
  cutoff = 0.5,
  ...
)
| fitted_values | fitted values from a regression function using the observed data (may be within a specified fold, for cross-fitted estimates). | 
| y | the observed outcome (may be within a specified fold, for cross-fitted estimates). | 
| full_y | the observed outcome (not used, defaults to  | 
| C | the indicator of coarsening (1 denotes observed, 0 denotes unobserved). | 
| Z | either  | 
| ipc_weights | weights for inverse probability of coarsening (IPC) (e.g., inverse weights from a two-phase sample) weighted estimation. Assumed to be already inverted. (i.e., ipc_weights = 1 / [estimated probability weights]). | 
| ipc_fit_type | if "external", then use  | 
| ipc_eif_preds | if  | 
| ipc_est_type | IPC correction, either  | 
| scale | if doing an IPC correction, then the scale that the correction should be computed on (e.g., "identity"; or "logit" to logit-transform, apply the correction, and back-transform). | 
| na.rm | logical; should  | 
| nuisance_estimators | not used; for compatibility with  | 
| a | not used; for compatibility with  | 
| cutoff | The risk score cutoff at which the specificity is evaluated.
Fitted values above  | 
| ... | other arguments to SuperLearner, if  | 
A named list of: (1) the estimated sensitivity of the fitted regression
function using specified cutoff; (2) the estimated influence function; and
(3) the IPC EIF predictions.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.