如何从PHP中的双精度数组计算第n个百分位数?

前端之家收集整理的这篇文章主要介绍了如何从PHP中的双精度数组计算第n个百分位数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一大堆双打,我需要计算数组的第75和第90百分位值.通过函数执行此操作的最有效方法是什么?
统计以来已经有一段时间了,所以我可能会离开这里 – 但这里有一个裂缝.
function get_percentile($percentile,$array) {
    sort($array);
    $index = ($percentile/100) * count($array);
    if (floor($index) == $index) {
         $result = ($array[$index-1] + $array[$index])/2;
    }
    else {
        $result = $array[floor($index)];
    }
    return $result;
}

$scores = array(22.3,32.4,12.1,54.6,76.8,87.3,45.5,87.9);

echo get_percentile(75,$scores);
echo get_percentile(90,$scores);
原文链接:https://www.f2er.com/php/133595.html

猜你在找的PHP相关文章