MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / NPV

Method NPV

libraries/GST/GST.cpp:133–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131float GST::PPV() { return TP / (TP + FP); };
132float GST::negativePredictiveValue() { return NPV(); };
133float GST::NPV() { return TN / (TN + FN); };
134float GST::falseDiscoveryRate() { return FDR(); };
135float GST::FDR() { return FP / (TP + FP); };
136float GST::falseOmissionRate() { return FOR(); };

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64