| comp_prob {riskyr} | R Documentation |
Compute probabilities from (3 essential) probabilities.
Description
comp_prob computes current probability information
from 3 essential probabilities
(prev,
sens or mirt,
spec or fart).
It returns a list of 13 key probabilities prob
as its output.
Usage
comp_prob(
prev = num$prev,
sens = num$sens,
mirt = NA,
spec = num$spec,
fart = NA,
tol = 0.01
)
Arguments
prev |
The condition's prevalence value |
sens |
The decision's sensitivity value |
mirt |
The decision's miss rate value |
spec |
The decision's specificity value |
fart |
The decision's false alarm rate |
tol |
A numeric tolerance value for |
Details
comp_prob assumes that a sufficient and
consistent set of essential probabilities
(i.e., prev and
either sens or its complement mirt, and
either spec or its complement fart)
is provided.
comp_prob computes and returns a full set of basic and
various derived probabilities (e.g.,
the probability of a positive decision ppod,
the probability of a correct decision acc,
the predictive values PPV and NPV, as well
as their complements FDR and FOR)
in its output of a list prob.
Extreme probabilities (sets containing two or more
probabilities of 0 or 1) may yield unexpected values
(e.g., predictive values PPV or NPV
turning NaN when is_extreme_prob_set
evaluates to TRUE).
comp_prob is the probability counterpart to the
frequency function comp_freq.
Key relationships between probabilities and frequencies:
Three perspectives on a population:
A population of
Nindividuals can be split into 2 subsets of frequencies in 3 different ways:by condition:
N = cond_true + cond_falseThe frequency
cond_truedepends on the prevalenceprevand the frequencycond_falsedepends on the prevalence's complement1 - prev.by decision:
The frequency
dec_posdepends on the proportion of positive decisionsppodand the frequencydec_negdepends on the proportion of negative decisions1 - ppod.by accuracy (i.e., correspondence of decision to condition):
Each perspective combines 2 pairs of the 4 essential probabilities (hi, mi, fa, cr).
When providing probabilities, the population size
Nis a free parameter (independent of the essential probabilitiesprev,sens, andspec).If
Nis unknown (NA), a suitable minimum value can be computed bycomp_min_N.Defining probabilities in terms of frequencies:
Probabilities are – determine, describe, or are defined as – the relationships between frequencies. Thus, they can be computed as ratios between frequencies:
prevalence
prev:sensitivity
sens:miss rate
mirt:specificity
spec:false alarm rate
fart:proportion of positive decisions
ppod:positive predictive value
PPV:negative predictive value
NPV:false detection rate
FDR:false omission rate
FOR:accuracy
acc:rate of hits, given accuracy
p_acc_hi:rate of false alarms, given inaccuracy
p_err_fa:
Note: When frequencies are rounded (by
round = TRUEincomp_freq), probabilities computed fromfreqmay differ from exact probabilities.
Functions translating between representational formats:
comp_prob_prob, comp_prob_freq,
comp_freq_prob, comp_freq_freq
(see documentation of comp_prob_prob for details).
Value
A list prob containing 13 key probability values.
See Also
prob contains current probability information;
accu contains current accuracy information;
num contains basic numeric parameters;
init_num initializes basic numeric parameters;
pal contains current color information;
txt contains current text information;
freq contains current frequency information;
comp_freq computes frequencies from probabilities;
is_valid_prob_set verifies sets of probability inputs;
is_extreme_prob_set verifies sets of extreme probabilities;
comp_min_N computes a suitable minimum population size N;
comp_freq_freq computes current frequency information from (4 essential) frequencies;
comp_freq_prob computes current frequency information from (3 essential) probabilities;
comp_prob_freq computes current probability information from (4 essential) frequencies;
comp_prob_prob computes current probability information from (3 essential) probabilities.
Other functions computing probabilities:
comp_FDR(),
comp_FOR(),
comp_NPV(),
comp_PPV(),
comp_accu_freq(),
comp_accu_prob(),
comp_acc(),
comp_comp_pair(),
comp_complement(),
comp_complete_prob_set(),
comp_err(),
comp_fart(),
comp_mirt(),
comp_ppod(),
comp_prob_freq(),
comp_sens(),
comp_spec()
Examples
# Basics:
comp_prob(prev = .11, sens = .88, spec = .77) # => ok: PPV = 0.3210614
comp_prob(prev = .11, sens = NA, mirt = .12, spec = NA, fart = .23) # => ok: PPV = 0.3210614
comp_prob() # => ok, using current defaults
length(comp_prob()) # => 13 probabilities
# Ways to work:
comp_prob(.99, sens = .99, spec = .99) # => ok: PPV = 0.999898
comp_prob(.99, sens = .90, spec = NA, fart = .10) # => ok: PPV = 0.9988789
# Watch out for extreme cases:
comp_prob(1, sens = 0, spec = 1) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = 0) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = NA, fart = 0) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = NA, fart = 1) # => ok, but with warnings (as PPV & FDR are NaN)
# Watch out for extreme cases:
comp_prob(1, sens = 0, spec = 1) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = 0) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = NA, fart = 0) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 0, spec = NA, fart = 1) # => ok, but with warnings (as PPV & FDR are NaN)
comp_prob(1, sens = 1, spec = 0) # => ok, but with warnings (as NPV & FOR are NaN)
comp_prob(1, sens = 1, spec = 1) # => ok, but with warnings (as NPV & FOR are NaN)
comp_prob(1, sens = 1, spec = NA, fart = 0) # => ok, but with warnings (as NPV & FOR are NaN)
comp_prob(1, sens = 1, spec = NA, fart = 1) # => ok, but with warnings (as NPV & FOR are NaN)
# Ways to fail:
comp_prob(NA, 1, 1, NA) # => only warning: invalid set (prev not numeric)
comp_prob(8, 1, 1, NA) # => only warning: prev no probability
comp_prob(1, 8, 1, NA) # => only warning: sens no probability
comp_prob(1, 1, 1, 1) # => only warning: is_complement not in tolerated range