Click or drag to resize
Accord.NET (logo)

ConfusionMatrixFalsePositiveRate Property

False Positive Rate, also known as false alarm rate.

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

Property Value

Type: Double
Remarks

The rate of false alarms in a test.

The False Positive Rate can be calculated as FPR = FP / (FP + TN) or FPR = (1-specificity).

See Also