MathPHP\Statistics\Regression\Regression::yHat PHP Метод

yHat() публичный Метод

Ŷ (yhat) A list of the predicted values of Y given the regression.
public yHat ( ) : array
Результат array
    public function yHat()
    {
        return array_map([$this, 'evaluate'], $this->xs);
    }