-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathLinear.php
More file actions
71 lines (65 loc) · 1.84 KB
/
Linear.php
File metadata and controls
71 lines (65 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace MathPHP\Statistics\Regression;
use MathPHP\Exception;
/**
* Simple linear regression - least squares method
*
* A model with a single explanatory variable.
* Fits a straight line through the set of n points in such a way that makes
* the sum of squared residuals of the model (that is, vertical distances
* between the points of the data set and the fitted line) as small as possible.
* https://en.wikipedia.org/wiki/Simple_linear_regression
*
* Having data points {(xᵢ, yᵢ), i = 1 ..., n }
* Find the equation y = mx + b
*
* _ _ __
* x y - xy
* m = _________
* _ __
* (x)² - x²
*
* _ _
* b = y - mx
*
* @phpstan-import-type SimpleLinearResultModel from Methods\LeastSquares
* @phpstan-import-type PolynomialResultModel from Methods\LeastSquares
*/
class Linear extends ParametricRegression
{
/** @use Methods\LeastSquares<SimpleLinearResultModel> */
use Methods\LeastSquares;
use Models\LinearModel;
/**
* @param list<float> $array
* @return SimpleLinearResultModel
*/
protected function createResultModel(array $array): array
{
return $this->createSimpleLinearResultModel($array);
}
/**
* Calculates the regression parameters.
*
* @throws Exception\BadDataException
* @throws Exception\IncorrectTypeException
* @throws Exception\MatrixException
* @throws Exception\MathException
*/
public function calculate(): void
{
$this->parameters = $this->leastSquares($this->ys, $this->xs)->getColumn(0);
}
/**
* Evaluate the regression equation at x
* Uses the instance model's evaluateModel method.
*
* @param float $x
*
* @return float
*/
public function evaluate(float $x): float
{
return $this->evaluateModel($x, $this->parameters);
}
}