Wolfram Computation Meets Knowledge

Prevalence

Prevalence is the true proportion of a disease in a population.

Prevalence equals the sum of the false negatives plus the true positives divided by the sum of the false negatives and positives and the true negatives and positives.

Formula

QuantityVariable["prev", "Unitless"] == (QuantityVariable["fn", "Unitless"] + QuantityVariable["tp", "Unitless"])/(QuantityVariable["fn", "Unitless"] + QuantityVariable["fp", "Unitless"] + QuantityVariable["tn", "Unitless"] + QuantityVariable["tp", "Unitless"])

symbol description physical quantity
prev prevalence "Unitless"
fn false negatives "Unitless"
tp true positives "Unitless"
fp false positives "Unitless"
tn true negatives "Unitless"

Forms

Examples

Get the resource:

In[1]:=
ResourceObject["Prevalence"]
Out[1]=

Get the formula:

In[2]:=
FormulaData[ResourceObject["Prevalence"]]
Out[2]=

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Prevalence"], {QuantityVariable["fn","Unitless"] -> 2, 
  QuantityVariable["fp","Unitless"] -> 3}]
Out[3]=

Publisher Information