MCordingley\Regression\StatisticsGatherer\Linear::getSumSquaredTotal PHP Метод

getSumSquaredTotal() приватный Метод

Calculates the sum-squared total of the regression. This is the sum of the squared distances of observations from their average, a useful measure to put the sum-squared error (SSE) and sum-squared model (SSM) into context.
private getSumSquaredTotal ( ) : float
Результат float
    private function getSumSquaredTotal() : float
    {
        if (is_null($this->sumSquaredTotal)) {
            $average = array_sum($this->observations->getOutcomes()) / count($this->observations->getOutcomes());
            $this->sumSquaredTotal = static::sumSquaredDifference($this->observations->getOutcomes(), $average);
        }
        return $this->sumSquaredTotal;
    }