Changeset 13881 for stable/HeuristicLab.DataPreprocessing/3.4
- Timestamp:
- 06/08/16 15:21:31 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13427,13539
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing/3.4
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.DataPreprocessing/3.4 merged: 13427
- Property svn:mergeinfo changed
-
stable/HeuristicLab.DataPreprocessing/3.4/Implementations/PreprocessingData.cs
r13289 r13881 134 134 } 135 135 136 private static IList CreateColumn<T>(Dataset ds, int column, Func<string, T> selector) {137 var list = new List<T>(ds.Rows);138 for (int row = 0; row < ds.Rows; ++row) {139 list.Add(selector(ds.GetValue(row, column)));140 }141 return list;142 }143 144 136 private void CheckPartitionRanges() { 145 137 int maxRowIndex = Math.Max(0, Rows - 1);
Note: See TracChangeset
for help on using the changeset viewer.