- Timestamp:
- 05/21/14 11:12:31 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 2 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 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IChartLogic.cs
r10847 r10867 46 46 47 47 string GetVariableNameByIndex(int index); 48 49 IEnumerable<string> GetVariableNames(); 50 List<double> GetVariableValues(string variableName); 48 51 } 49 52 }
Note: See TracChangeset
for help on using the changeset viewer.