sbrbot/mlr
Composer 安装命令:
composer require sbrbot/mlr
包简介
PHP library for calculating Multivariate Linear Regression
README 文档
README
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!
统计信息
- 总下载量: 71
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-12