Is there a good library for calculating linear least squares OLS (Ordinary Least Squares) in python?
Thanks.
Edit:
Thanks for SciKits and Scipy. @ars: Could X be a matrix? Example:
y(1) = a(1)*x(11) + a(2)*x(12) + a(3)*x(13) y(2) = a(1)*x(21) + a(2)*x(22) + a(3)*x(23) ........................................... y(n) = a(1)*x(n1) = a(2)*x(n2) + a(3)*x(n3)
Then how to pass parameters for Y and X matrices in your example?
Also, I don't have much experience in algebra, I would appreciate it if you guys could tell me a good tutorial on such issues.
Thank you very much.
source share