Passed
Push — master ( 52c9ba...451f84 )
by Arkadiusz
02:50
created

ANOVAFValue   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A score() 0 9 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