selection_evalue.Rd
Returns a data frame containing point estimates, the lower confidence limit, and the upper confidence limit on the risk ratio scale (through an approximate conversion if needed when outcome is common) as well as E-values for the point estimate and the confidence interval limit closer to the null.
selection_evalue( est, lo = NA, hi = NA, true = 1, sel_pop = FALSE, S_eq_U = FALSE, risk_inc = FALSE, risk_dec = FALSE, ... )
est | The point estimate: a risk, odds, or hazard ratio. An object of
class "estimate", it should be constructed with functions |
---|---|
lo | The lower limit of the confidence interval |
hi | The upper limit of the confidence interval |
true | The true value to which to shift the observed point estimate. Typically set to 1 to consider a null true effect. |
sel_pop | Whether inference is specific to selected population (TRUE) or entire population (FALSE). Defaults to FALSE. |
S_eq_U | Whether the unmeasured factor is assumed to be a defining characteristic of the selected population. Defaults to FALSE. |
risk_inc | Whether selection is assumed to be associated with increased risk of the outcome in both exposure groups. Defaults to FALSE. |
risk_dec | Whether selection is assumed to be associated with decreased risk of the outcome in both exposure groups. Defaults to FALSE. |
... | Arguments passed to other methods. |
A selection bias E-value is a summary measure that helps assess
susceptibility of a result to selection bias. Each of one or more
parameters characterizing the extent of the bias must be greater than or
equal to this value to be sufficient to shift an estimate (est
) to
the null or other true value (true
). The parameters, as defined in
Smith and VanderWeele 2019, depend on assumptions an investigator is
willing to make (see arguments sel_pop
, S_eq_U
,
risk_inc
, risk_dec
). The function prints a
message about which parameters the selection bias E-value refers to given
the assumptions made. See the cited article for details.
# Examples from Smith and VanderWeele 2019 # Zika virus example selection_evalue(OR(73.1, rare = TRUE), lo = 13.0)#>#>#> point lower upper #> RR 73.10000 13.000000 NA #> Selection bias E-values 16.58416 6.670588 NA# Endometrial cancer example selection_evalue(OR(2.30, rare = TRUE), true = 11.98, S_eq_U = TRUE, risk_inc = TRUE)#>#> #> #>#>#> point lower upper #> RR 2.300000 NA NA #> Selection bias E-values 5.208696 NA NA#>#>#> point lower upper #> RR 1.500000 1.220000 NA #> Selection bias E-values 2.366025 1.738073 NA