 | ConfusionMatrixMCC Method |
Function [float] MCC([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)
Syntaxpublic static SqlDouble MCC(
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]
RemarksMatthews correlation coefficient function (Confusion Matrix MCC).
See Also