for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare (strict_types = 1);
namespace Phpml\Preprocessing\Imputer\Strategy;
use Phpml\Preprocessing\Imputer\Strategy;
use Phpml\Math\Statistic\Mean;
class MeanStrategy implements Strategy
{
public function replaceValue(array $currentAxis)
return Mean::arithmetic($currentAxis);
}