Completed
Push — develop ( 95caef...7b5b64 )
by Arkadiusz
02:58
created
src/Phpml/Math/Statistic/Correlation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $a2 = 0;
31 31
         $b2 = 0;
32 32
 
33
-        for ($i = 0;$i < $count;++$i) {
33
+        for ($i = 0; $i < $count; ++$i) {
34 34
             $a = $x[$i] - $meanX;
35 35
             $b = $y[$i] - $meanY;
36 36
             $axb = $axb + ($a * $b);
Please login to merge, or discard this patch.
src/Phpml/Classification/SVC.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 
7 7
 use Phpml\Classification\Traits\Predictable;
8 8
 use Phpml\Classification\Traits\Trainable;
9
-use Phpml\Math\Kernel;
10 9
 
11 10
 class SVC implements Classifier
12 11
 {
Please login to merge, or discard this patch.