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