|
ReceiverOperatingCharacteristic Constructor (Boolean, Int32)
|
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(
bool[] expected,
int[] actual
)
Public Sub New (
expected As Boolean(),
actual As Integer()
)
Request Example
View SourceParameters
- expected
- Type: SystemBoolean
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: SystemInt32
An array of continuous values trying to approximate the measurement array.
See Also