[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming

Multiple linear regression 1.01

aminer

6/6/2014 9:56:00 AM


Hello,


I have updated my multiple linear regression program to support
SSE (Standard Error of the Estimate), the "SSE" is important in quality
control, the interpretation of SSE is similar to standard deviation's
"68-95-99 rule", that is, 68% of the time the predicted score
will fall plus-or-minus 1 x SSE of the actual score based on the
regression equation, 95% of the time the predicted score will fall
plus-or-minus 2 x SSE , and 99% of the time the predicted score will
fall plus-or-minus 3 x SSE.

So my Multiple linear regression program does show the
multiple regression equation that approximate the statistical
data and it calculates and shows the Coefficient of
determination R^2 and it calculates and shows
the Standard Error of the Estimate.

My program can do both simple and multiple linear regression and it's
fast cause it uses SIMD SSE2 instructions to do matrix operations and
you have to pay 0$ for it.

I have also included the following simple regression program
inside the zipfile as "test1.pas" example, here it is:

http://davidmlane.com/hyperstat/A1...


You can download my Multiple linear regression 1.01 from:

https://sites.google.com/site/aminer68/multiple-linear-...



Thank you,
Amine Moulay Ramdane.