Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
JIRA-1160
Browse files Browse the repository at this point in the history
closes #49
  • Loading branch information
Maja Kabiljo committed Sep 21, 2017
1 parent b8f966a commit 22e8511
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -789,10 +789,9 @@ private static boolean calculateRegression(double[] coefficient,
List<Integer> validColumnIndices, OLSMultipleLinearRegression mlr) {

if (coefficient.length != validColumnIndices.size()) {
LOG.warn("There are " + coefficient.length +
" coefficients, but " + validColumnIndices.size() +
LOG.info("There are " + coefficient.length +
" coefficients, and " + validColumnIndices.size() +
" valid columns in the regression");
return false;
}

double[] beta = mlr.estimateRegressionParameters();
Expand Down

0 comments on commit 22e8511

Please sign in to comment.