How to average columns of data from multiple, flat arrays?



PHP Snippet 1:

Warning: Undefined array key 0 in /in/E783F on line 20

Warning: Undefined array key 1 in /in/E783F on line 20

Warning: Undefined array key 2 in /in/E783F on line 20

Warning: Undefined array key 3 in /in/E783F on line 20
<pre>array(4) {
  [0]=>
  float(3)
  [1]=>
  float(6)
  [2]=>
  float(10)
  [3]=>
  float(5.333333333333333)
}

PHP Snippet 2:

     $result = [];
     for ($i = 0; $i < count($array1); $i++) {
         $result [] = ($array1[$i] + $array2[$i] + $array3[$i] + $array4[$i]) / count($array1);
     }
     dd($result);

PHP Snippet 3:

# The three dots (...) allow for ANY amount of
# arrays to be inputted into the function
# 
# Theoretically you can put 100 different arrays if you wanted
# e.g. arrayAverage($a1, $a2, $a3, $a4, $a5, $a6, ...etc)
function arrayAverage(...$array){

    # Add each of the values you want to average out into
    # separate temporary arrays for easy manageability.
    # For this instance, the first value of the 4 arrays 
    # will be added to its own array, then the second
    # value of the 4 arrays will be added to its own array,
    # and so on and so on...
    foreach($array as $arr){
        for($i = 0; $i < count($arr); $i++){
            if($arr[$i] !== null) $temparr[$i][] = $arr[$i];
        }
    }

    # Now we can get the average of each of those arrays we created 
    # and put them into the "$averages" array, to be returned at the end
    for($j = 0; $j < count($temparr); $j++){
        $averages[] = array_sum($temparr[$j]) / count($temparr[$j]);
    }

    # Returns the averages in said array
    return $averages;

}

PHP Snippet 4:

# Arrays do NOT need the same number of values/keys as shown in "$array2"
$array1 = array(0, 7, 5, 0);
$array2 = array(2, 6, 10, 0, 100);
$array3 = array(4, 8, 15, 10);
$array4 = array(6, 7, 20, 10);

# Example on how to skip values just in case the need arises
# (So our averages won't be affected by having an extra number)
$array5 = array(null, null, null, null, 300);

$averages = arrayAverage($array1, $array2, $array3, $array4, $array5);
var_export($averages);

PHP Snippet 5:

$arrays = [$array1, $array2, $array3, $array4];

$result = [];
for ($i = 0; $i < count($array1); $i++) {
    $result[] = array_sum(array_column($arrays, $i)) / count($arrays);
}

PHP Snippet 6:

$array1 = [0, 7, 5, 0];
$array2 = [2, 6, 10, 0];
$array3 = [4, 8, 15, 10];
$array4 = [6, 7, 20, 10];

var_export(
    array_map(
        fn() => array_sum(func_get_args()) / func_num_args(),
        $array1,
        $array2,
        $array3,
        $array4
    )
);
// fn(...$col) => array_sum($col) / count($col), would also work

PHP Snippet 7:

array (
  0 => 3,
  1 => 7,
  2 => 12.5,
  3 => 5,
)

PHP Snippet 8:

var_export(array_map(fn() => array_sum(func_get_args()) / func_num_args(), ...$arrays));

PHP Snippet 9:

var_export(
    array_map(
        fn(...$col) => array_sum($col) / count(array_filter($col, fn($v) => !is_null($v))),
        ...$arrays
    )
);
// or:  fn(...$col) => array_sum($col) / count(array_diff($col, ['']))