Click or drag to resize
Accord.NET (logo)

ConfusionMatrixFalseDiscoveryRate Property

False Discovery Rate, or the expected false positive rate.

Namespace:  Accord.Statistics.Analysis
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public double FalseDiscoveryRate { get; }
Request Example View Source

Property Value

Type: Double
Remarks

The False Discovery Rate is actually the expected false positive rate.

For example, if 1000 observations were experimentally predicted to be different, and a maximum FDR for these observations was 0.10, then 100 of these observations would be expected to be false positives.

The False Discovery Rate is calculated as FDR = FP / (FP + TP).

See Also