Passed
Pull Request — master (#232)
by Arkadiusz
02:33
created

ANOVAFValue::score()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0
rs 9.6666
cc 2
eloc 5
nc 2
nop 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\FeatureSelection\ScoringFunction;
6
7
use Phpml\FeatureSelection\ScoringFunction;
8
use Phpml\Math\Statistic\ANOVA;
9
10
final class ANOVAFValue implements ScoringFunction
11
{
12
    public function score(array $samples, array $targets): array
13
    {
14
        $grouped = [];
15
        foreach ($samples as $index => $sample) {
16
            $grouped[$targets[$index]][] = $sample;
17
        }
18
19
        return ANOVA::oneWayF(array_values($grouped));
20
    }
21
}
22