使用 PHP 过滤标准偏差

Filter Standard Deviation using PHP

我想过滤多少水平我将添加我的标准偏差结果。 这些是我需要执行的步骤:

  1. 根据数组值计算标准差。 (求解)

  2. 求数组值的平均值,加上标准差结果。 例如:平均值 = -49.7 s.d = 3.37

因此,我需要继续添加值,直到获得新的数字列表。 例如:-49.7、-46.33、-42.96、-39.59

之后,我只需要过滤打印从 -49.7 到 -39.59 的数组值。

谁能帮我解决这个问题?

这是我能理解问题的脚本。

如果您需要任何解释或代码不是您想要的,请在评论部分告诉我。

<?php 

$array = [2,4,6,8,10];

$resultList = "";
$resultList_rounded = "";

function standardDeviation($array){

    //sum of all values
    $sum = array_sum($array);

    //sum of (square of values)
    $sum_of_square = array_sum(array_map(function($value){return $value*$value;},$array));

    //X Bar
    $xBar = average($array);

    //variance
    $variance = ($sum_of_square/count($array))-pow($xBar,2);

    //standard deviation
    return sqrt($variance);
}

function average($array){
    return (array_sum($array)/count($array));
}

function newList($array,$rounded=false,$round_digits = 4){
    $newarray = [];
    $sd = standardDeviation($array);
    $avg = average($array);

    for($i=1;$i<=count($array);$i++){
        if(empty($newarray)){
            array_push($newarray,$avg);
            continue;
        }
        if(!$rounded){
        array_push($newarray,$array[$i-1]+$sd);
        }else{
        array_push($newarray,number_format((float) ($array[$i-1]+$sd), $round_digits, '.', ''));
        }
    }
    return implode(',',$newarray);
}

function getRange($array){
    return $array[0]." to ".$array[count($array)-1];
}

//get new list
$resultList = newList($array,true,0); 
/*In the line above this, replace false with true if you want the rounded version and false if you want non rounded version. 4 means the number of digits to round.
examples:
$resultList = newList($array,true,4); will print 6,6.8284,8.8284,10.8284,12.8284
$resultList = newList($array,false,4);  will print 6,6.8284271247462,8.8284271247462,10.828427124746,12.828427124746
$resultList = newList($array,true,0); will print 6,7,9,11,13
$resultList = newList($array,true,1); will print 6,6.8,8.8,10.8,12.8
*/

//print the new result list
echo $resultList;