Download the PHP package sbrbot/mlr without Composer
On this page you can find all versions of the php package sbrbot/mlr. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor sbrbot
Package mlr
Short Description PHP library for calculating Multivariate Linear Regression
License MIT
Package mlr
Short Description PHP library for calculating Multivariate Linear Regression
License MIT
Please rate this library. Is it a good library?
Informations about the package mlr
Multivariate Linear Regression
This is a simple Multivariate Linear Regression library implemented in PHP.
Using known regression formula: (XTX)-1XTY it calculates linear coefficients and prediction.
require 'MLR.php'; // x1,x2,x3 // input variables (matrix) $X=[[1,3,3], [2,3,1], [2,4,2], [3,3,4]]; // target variable (vector) $Y= [[3], [2], [4], [3]]; // prediction for (matrix) // x1,x2,x3 $Z=[[2,3,3]]; // instantiate and calculate coefficients $MLR=new MLR($X,$Y); // fetch coefficients (if needed) $Coefficients=$MLR->getCoefficients(); // predict values for given input variable(s) $Prediction=$MLR->getPrediction($Z);
As simple as that!
All versions of mlr with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0.0
The package sbrbot/mlr contains the following files
Loading the files please wait ....