MathPHP\Statistics\Regression\Regression::yHat PHP Méthode

yHat() public méthode

Ŷ (yhat) A list of the predicted values of Y given the regression.
public yHat ( ) : array
Résultat array
    public function yHat()
    {
        return array_map([$this, 'evaluate'], $this->xs);
    }