php - 如何从 PHP 中的 double 组计算第 n 个百分位数?

标签 php math statistics

我有一个很大的 double 组,我需要计算数组的第 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, 54.6, 45.5, 87.9);

echo get_percentile(75, $scores);
echo get_percentile(90, $scores);

关于php - 如何从 PHP 中的 double 组计算第 n 个百分位数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24048879/

相关文章:

r - R中MAD函数和手动MAD计算的区别

php - 使数组 sql GROUP 查询与 php 数组完美配合(简单)

php - 重定向回自定义请求类 : Laravel 5 中的错误和输入

math - 为什么简化的数学方程比在 Julia-Lang 中有更多运算的等价方程运行得(稍微)慢?

php添加多个持续时间以获得总持续时间

sql - 如果通过对表的特定索引使用 sp_autostats 将 auto_update_statistics 设置为 ON,是否会统计每个 DML?

r - 改变一个数据集的分布以匹配另一个数据集

php - 是否可以将 ImageNow 与 Javascript 和 php 结合起来?

php - 在不考虑年份的情况下,laravel 上的 whereBetween 类型日期

algorithm - 从边缘找到内部几何