Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00%
1 / 1
100.00%
1 / 1
CRAP
100.00%
6 / 6
Weight
100.00%
1 / 1
100.00%
1 / 1
3
100.00%
6 / 6
 __invoke($data)
100.00%
1 / 1
3
100.00%
6 / 6
<?php
/**
* This file is part of the Statistical Classifier package.
*
* (c) Cam Spiers <camspiers@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Camspiers\StatisticalClassifier\Transform;
/**
* @author Cam Spiers <camspiers@gmail.com>
* @package Statistical Classifier
*/
class Weight
{
public function __invoke($data)
{
foreach ($data as $category => $tokens) {
foreach ($tokens as $token => $value) {
$data[$category][$token] = log($value, 10);
}
}
return $data;
}
}