Click or drag to resize
sqx

ConfusionMatrixBA Method

Function [float] BA([bigint] TP, [bigint] FP, [bigint] FN, [bigint] TN)
(Confusion Matrix)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public static SqlDouble BA(
	SqlInt64 TP,
	SqlInt64 FP,
	SqlInt64 FN,
	SqlInt64 TN
)

Parameters

TP
Type: System.Data.SqlTypesSqlInt64
[bigint]
FP
Type: System.Data.SqlTypesSqlInt64
[bigint]
FN
Type: System.Data.SqlTypesSqlInt64
[bigint]
TN
Type: System.Data.SqlTypesSqlInt64
[bigint]

Return Value

Type: SqlDouble
[float]
Remarks
Balanced Accuracy function (Confusion Matrix).
See Also