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

Method FDR

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

Source from the content-addressed store, hash-verified

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

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64