Наследование: implements MCordingley\Regression\Algorithm\Algorithm
Пример #1
0
 public function testTooFewObservations()
 {
     static::setExpectedException('InvalidArgumentException');
     $regression = new LeastSquares();
     $regression->regress(Observations::fromArray([[1, 1]], [1]));
 }