least-squares icon indicating copy to clipboard operation
least-squares copied to clipboard

JavaScript component for linear least squares regression analysis.

Results 2 least-squares issues
Sort by recently updated
recently updated
newest added

``` var ret = {} var f = LeastSquares(this.x, this.y, ret); console.dir(ret); //{ m: 1.4, b: 3.5 } console.log(f(3.6)); //8.54 ``` In the last line of this code, is the...

enhancement
backlog