Skip to content

Commit

Permalink
Fixed issue #224
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffheaton committed Sep 3, 2017
1 parent 16836ad commit 8b466da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ public void analyze() {
ColumnDefinition colDef = this.helper.getSourceColumns().get(i);
int index = findIndex(colDef);
String value = line[index];
String value = line[colDef.getIndex()];
colDef.analyze(value);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public NormalizedField(final double theNormalizedHigh,
final double theNormalizedLow) {
this.normalizedHigh = theNormalizedHigh;
this.normalizedLow = theNormalizedLow;
this.actualHigh = Double.MIN_VALUE;
this.actualHigh = -Double.MAX_VALUE;
this.actualLow = Double.MAX_VALUE;
this.action = NormalizationAction.Normalize;
}
Expand Down

0 comments on commit 8b466da

Please sign in to comment.