Changeset 10867 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ChartLogic.cs
- Timestamp:
- 05/21/14 11:12:31 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ChartLogic.cs
r10851 r10867 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 24 25 using System.Drawing; 25 26 using HeuristicLab.Analysis; … … 68 69 } 69 70 71 public List<double> GetVariableValues(string variableName) { 72 return preprocessingData.GetValues<double>(preprocessingData.GetColumnIndex(variableName)).ToList(); 73 } 70 74 71 72 private IEnumerable<string> GetVariableNames() { 75 public IEnumerable<string> GetVariableNames() { 73 76 List<string> doubleVariableNames = new List<string>(); 74 77 … … 118 121 if(row != null) 119 122 dataRows.Add(row); 120 123 } 121 124 return dataRows; 122 125 }
Note: See TracChangeset
for help on using the changeset viewer.