|
ReceiverOperatingCharacteristic Constructor (Int32, Double)
|
Constructs a new Receiver Operating Characteristic model
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public ReceiverOperatingCharacteristic(
int[] expected,
double[] actual
)
Public Sub New (
expected As Integer(),
actual As Double()
)
Request Example
View SourceParameters
- expected
- Type: SystemInt32
An array of binary values. Typically represented as 0 and 1, or -1 and 1,
indicating negative and positive cases, respectively. The maximum value
will be treated as the positive case, and the lowest as the negative. - actual
- Type: SystemDouble
An array of continuous values trying to approximate the measurement array.
See Also