You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Neil Ireson (JIRA)" <ji...@apache.org> on 2014/11/12 12:06:34 UTC

[jira] [Created] (MATH-1167) OLSMultipleLinearRegression STILL needs a way to specify non-zero singularity threshold when instantiating QRDecomposition

Neil Ireson created MATH-1167:
---------------------------------

             Summary: OLSMultipleLinearRegression STILL needs a way to specify non-zero singularity threshold when instantiating QRDecomposition
                 Key: MATH-1167
                 URL: https://issues.apache.org/jira/browse/MATH-1167
             Project: Commons Math
          Issue Type: Bug
    Affects Versions: 3.3
         Environment: jdk1.7_71, OSX 10.10
            Reporter: Neil Ireson
            Priority: Critical


A fix was made for this issue in MATH-1110 for the newSampleData method but not for the newXSampleData method.

It's a simple change to propagate the threshold to QRDecomposition:
237c237
<         qr = new QRDecomposition(getX());
---
>         qr = new QRDecomposition(getX(), threshold);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)