我查看了 Math 包中可用的百分位数代码。我将得到的结果与 Excel 中的百分位数进行了比较,发现它们不匹配。因此,我编写了自己的百分位数函数,并使用 Excel 的百分位数验证了结果。
对于那些需要在 php 中使用 Excel 的百分位数计算的人...
<?php
function mypercentile($data,$percentile){
if( 0 < $percentile && $percentile < 1 ) {
$p = $percentile;
}else if( 1 < $percentile && $percentile <= 100 ) {
$p = $percentile * .01;
}else {
return "";
}
$count = count($data);
$allindex = ($count-1)*$p;
$intvalindex = intval($allindex);
$floatval = $allindex - $intvalindex;
sort($data);
if(!is_float($floatval)){
$result = $data[$intvalindex];
}else {
if($count > $intvalindex+1)
$result = $floatval*($data[$intvalindex+1] - $data[$intvalindex]) + $data[$intvalindex];
else
$result = $data[$intvalindex];
}
return $result;
}
?>
上面的代码可能不优雅,但它解决了我的问题。
yuvaraj