Phpml\Preprocessing\Imputer\Strategy\MostFrequentStrategy::replaceValue PHP Method

replaceValue() public method

public replaceValue ( array $currentAxis ) : float | mixed
$currentAxis array
return float | mixed
    public function replaceValue(array $currentAxis)
    {
        return Mean::mode($currentAxis);
    }
MostFrequentStrategy