2017 © Pedro Peláez
 

library mlr

PHP library for calculating Multivariate Linear Regression

image

sbrbot/mlr

PHP library for calculating Multivariate Linear Regression

  • Tuesday, December 12, 2017
  • by sbrbot
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Multivariate Linear Regression

This is a simple Multivariate Linear Regression library implemented in PHP., (*1)

Using known regression formula: (XTX)-1XTY it calculates linear coefficients and prediction., (*2)

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!, (*3)

The Versions

12/12 2017

dev-master

9999999-dev

PHP library for calculating Multivariate Linear Regression

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Stjepan Brbot

12/12 2017

1.0.0

1.0.0.0

PHP library for calculating Multivariate Linear Regression

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Stjepan Brbot