MathPHP\Statistics\Regression\Methods\LeastSquares::tProbability PHP Метод

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

t probability = Student's T CDF(t,ν) where: t = t value ν = n - p - alpha degrees of freedom alpha = 1 if the regression includes a constant term
public tProbability ( ) : array
Результат array [m => p, b => p]
    public function tProbability() : array
    {
        $ν = $this->ν;
        $t = $this->tValues();
        return ['m' => StudentT::CDF($t['m'], $ν), 'b' => StudentT::CDF($t['b'], $ν)];
    }