From: Konrad H. <hi...@cn...> - 2002-04-29 12:39:06
|
Jasper Phillips <ja...@pe...> writes: > I'm still looking for a library written in Python, but haven't had any luck. Numerical Python has all the basic stuff, but you need to read in and arrange the data yourself. All linear regression problems ultimately become least-squares problems for a system of linear equations, which can be solved using LinearAlgebra.linear_least_squares. Konrad. |