Refused: a tail probability of an individual counterfactual law
Source:R/intervene.R
gmm_cf_tail_prob.RdLike gmm_cf_variance(), a per-unit counterfactual tail probability
\(P(Y_{t'} > c \mid y, t, x)\) is not identified – it is a functional of
the unidentified counterfactual law, not of its identified mean. This
accessor refuses rather than mislead.
See also
Other decision:
fit_uplift(),
gmm_cf_mean(),
gmm_cf_variance(),
gmm_counterfactual(),
gmm_intervene(),
proxy_cate(),
proxy_confounding_gap(),
proxy_decide(),
proxy_identification_report(),
proxy_overlap(),
proxy_policy_value(),
proxy_predict(),
proxy_regime_segments(),
proxy_retrospective_uplift(),
proxy_uplift(),
uplift_identification(),
uplift_model()
Examples
g <- gmm(weights = 1, means = list(c(0, 0, 0)),
covariances = list(diag(3)))
cf <- gmm_counterfactual(g, evidence = c(1, 0, 0.2),
do = c(NA, 1, NA), query = 1L)
try(gmm_cf_tail_prob(cf, threshold = 2))
#> Error in gmm_cf_tail_prob(cf, threshold = 2) :
#> Individual counterfactual tail probabilities are not identified.
#> ℹ They are functionals of the unidentified counterfactual law, not its mean.
#> ℹ Only the counterfactual mean is identified; see `gmm_cf_mean()`.