我想为混淆矩阵 2 x 2 计算 Java 中的 Phi 系数,其中代码如下:
double str= (trueP + falseP) *(trueP + falseN) * (trueN + falseP) * (trueN + falseN);
double output= Math.sqrt(str);
if (output!= 0.0)
return (trueP * trueN) / output;
else return 0.0;
其中trueP=6930、trueN=6924、falseP=0 和 falseN = 0,此代码的输出为 3629.03401901938。我已经在excel中计算了 Phi 系数,它对于相同的值返回值1
什么是错?
任何帮助将不胜感激