php-ml/src/Phpml/Preprocessing/Imputer/Strategy/MostFrequentStrategy.php
Tomáš Votruba d85bfed468 [cs] remove more unused comments (#146)
* [cs] remove more unused comments

* [cs] remove unused array phpdocs

* [cs] remove empty lines in docs

* [cs] space-proof useless docs

* [cs] remove empty @param lines

* [cs] remove references arrays
2017-11-13 11:42:40 +01:00

20 lines
356 B
PHP

<?php
declare(strict_types=1);
namespace Phpml\Preprocessing\Imputer\Strategy;
use Phpml\Math\Statistic\Mean;
use Phpml\Preprocessing\Imputer\Strategy;
class MostFrequentStrategy implements Strategy
{
/**
* @return float|mixed
*/
public function replaceValue(array $currentAxis)
{
return Mean::mode($currentAxis);
}
}