- Timestamp:
- 01/15/14 13:09:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10311 r10341 78 78 private static IList CreateColumn<T>(Dataset ds, int column, Func<string, T> selector) { 79 79 var list = new List<T>(ds.Rows); 80 for (int row = 0; row < ds.Rows; row++) {81 list [row] = selector(ds.GetValue(row, column));80 for (int row = 0; row < ds.Rows; ++row) { 81 list.Add(selector(ds.GetValue(row, column))); 82 82 } 83 83 return list;
Note: See TracChangeset
for help on using the changeset viewer.