You are here: Start » AVL.NET » Function Reference » Data Classification » Statistics » AVL.TableOfConfusion_BoolArray

AVL.TableOfConfusion_BoolArray

Computes statistics from a confusion matrix for an array of groundTruth and results.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void TableOfConfusion_BoolArray
(
	IList<bool> inGroundTruth,
	IList<bool> inResults,
	out long outTruePositive,
	out long outFalsePositive,
	out long outTrueNegative,
	out long outFalseNegative,
	AvlNet.ConfusionTable outConfusionTable
)

Parameters

Name Type Range Default Description
inGroundTruthSystem.Collections.Generic.IList<bool>
inResultsSystem.Collections.Generic.IList<bool>
outTruePositivelong
outFalsePositivelong
outTrueNegativelong
outFalseNegativelong
outConfusionTableAvlNet.ConfusionTable

Errors

List of possible exceptions:

Error type Description
DomainError Array inGroundTruth is empty in TableOfConfusion_BoolArray.

See also