2

In the context of diagnostic screening (Positive / Negative) for a given outcome, what is the correct term for FP / (TP + FP)?

Wikipedia calls it the False Discovery Rate. However, when I look for more credible references, I'm unable to find any. Further, the peer-reviewed literature I do find on the False Discovery Rate is in the context of multiple hypothesis testing.

So, I would appreciate it if someone could:

  • Confirm that FDR is the correct terminology
  • Point me towards a credible reference
Lella
  • 2,107
  • 17
  • 24
  • They are the same thing. – SmallChess May 18 '17 at 15:31
  • 1
    Have you tried the references provided by Wikipedia https://en.wikipedia.org/wiki/False_discovery_rate#References ? – Tim May 18 '17 at 15:33
  • I am more familiar with FDR in multiple testing where it was developed to allow a small number of the tests to be wrong rather than the stricter requirement of making it a high probability that all conclusions are correct. Certainly in diagnostic testing fraction of false possibles out of all positive diagnoses could be called a false discovery rate. I think the context of the problem indicates which is the case. – Michael R. Chernick May 18 '17 at 15:34
  • 1
    @Tim When I look through the references, they all appear to be related to multiple testing. – Brad Cannell May 18 '17 at 15:46

1 Answers1

1

When you do multiple comparisons, a common strategy is to control the expected false discovery rate. Basically, it means to reduce the number of tests to be wrong out of all tests you detect. When you think about it, this is just the definition: $FP / (TP + FP)$ you quote.

The denominator is the total number of positive tests you have, while the numerator is the number of false positive tests. Ideally, you'd like it as low as possible.

The Wikipedia you have gives you the definition.

In the original paper for Benjamini-Hochberg, there is a figure:enter image description here

Ok. Let's compare your Wikipedia definition:

enter image description here

To me, they are the same thing. If you reject a true null hypothesis it counts as an error (false positive).

curious_dan
  • 347
  • 2
  • 9
SmallChess
  • 7,211
  • "The denominator is the total number of tests you have, while the numerator is the number of false tests". I think this is incorrect. The total number of tests would include the false negatives and true negatives, but they are not part of the FDR definition. And similarly, the false tests would include the false negatives, which are also excluded. – mkt May 16 '18 at 09:43