Sensitivity
sensitivity calculates the sensitivity and (optionally) the associated standard deviation from a confusion matrix.
sensitivity(CMX, st.dev = TRUE)
CMX | 
  a confusion matrix - output from   | 
st.dev | 
 a logical indicating whether the associated standard deviation should be calculated  | 
Sensitivity is the proportion of observed positives correctly predicted, and reflects a model's ability to predict a presence given that a species actually occurs at a location.
if st.dev = FALSE, returns: sensitivity. 
if st.dev = TRUE, returns a dataframe where:
| [1,1] |  sensitivity    | 
|
| [1,2] |  sensitivity.sd
 | 
 standard deviation of sensitivity  | 
Elizabeth Freeman eafreeman@fs.fed.us
cmx, pcc, specificity, Kappa, auc 
data(SIM3DATA) sensitivity(cmx(SIM3DATA)) sensitivity(cmx(SIM3DATA),st.dev=FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.