Linear Regression

This software takes two columns tables (X,Y) as input and computes the equation Y=aX+b and X=f(Y) as well.

Manual :

1- install Julia free programming language and install packages :

GLM : Pkg.add("GLM")

DataFrames : Pkg.add("DataFrames")

2- unzip the software

3- copy your n tables in csv (TAB delimitated by default) files in the “data” directory.

The tables must have 2 columns.

- first line of the table : column names X, Y

- next lines : values

- no titles in first column

4- execute the software by the command : julia software_name

5- processed file is in the “result” directory.