The general purpose of multiple regression is to gain information about the relationship between several independent
variables (x_i) and a dependent variable (y). The procedure involves fitting an equation of the form:
This is a minimal implementation of least squares procedure that accepts a List-of-Lists in which each nested list
corresponds to a single set of observations. The single exported routine returns the coefficients (b_i) and R^2.
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
Alternatively, to install with Module::Build, you can use the following commands:
perl Build.PL
./Build
./Build test
./Build install