View source: R/belief_trajectory.R
| concentration_index | R Documentation |
Computes the fraction of the total absolute evidence weight carried by
the single most impactful step. Ranges from 1/T (uniform
contributions) to 1 (single-step dominance). Under the
single-failure-mode axiomatization (Theorem T-001 in the supplementary
material of Marsico & Egeland, in prep.), this is the canonical
concentration measure for forensic fragility: it equals the fraction of
the total weight of evidence lost under worst-case removal of a single
piece of evidence.
concentration_index(weights)
weights |
Numeric vector. Per-step contributions, e.g.,
|
The formula is
C_W(w) = \frac{\max_k |w_k|}{\sum_k |w_k|}
with absolute values taken to handle both supporting (w_k > 0) and
excluding (w_k < 0) evidence symmetrically. For inclusion-fragility
specifically (restricting to positive weights), use
concentration_index_positive. For robustness checks, compare
against herfindahl_index and shannon_concentration.
Numeric scalar in [1/T, 1] where T is the length of
weights. Returns 0 if all weights are zero.
Marsico, F. L. & Egeland, T. (in preparation). Belief dynamics during the investigative process. Slooten, K. (2021). The analogy between DNA kinship and DNA mixture evaluation. Forensic Science International: Genetics 51, 102444.
concentration_index_positive,
herfindahl_index,
shannon_concentration,
leave_one_out.
# Balanced: all markers contribute equally
concentration_index(rep(0.7, 15)) # -> 1/15
# Concentrated: one marker dominates
concentration_index(c(5, rep(0.1, 14))) # -> ~0.78
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.