Wolfram Computation Meets Knowledge

Sensitivity

Sensitivity (also called the true positives rate) measures the proportion of positives that are correctly identified as such (i.e. the percentage of healthy people who are correctly identified as having the condition).

The sensitivity equals the true positives divided by the sum of the false negatives and the true positives.

Formula

QuantityVariable["sens", "Unitless"] == QuantityVariable["tp", "Unitless"]/(QuantityVariable["fn", "Unitless"] + QuantityVariable["tp", "Unitless"])

symbol description physical quantity
sens sensitivity "Unitless"
tp true positives "Unitless"
fn false negatives "Unitless"

Forms

Examples

Get the resource:

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

Get the formula:

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

Use some values:

In[3]:=
FormulaData[
 ResourceObject[
  "Sensitivity"], {QuantityVariable["fn","Unitless"] -> 2, 
  QuantityVariable["tp","Unitless"] -> 22}]
Out[3]=

Publisher Information