Changeset 10148
- Timestamp:
- 11/20/13 16:56:18 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/EditableDataset.cs
r10147 r10148 74 74 75 75 #endregion 76 77 76 78 } 77 79 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10146 r10148 84 84 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 85 85 </Compile> 86 <Compile Include="EditableDataset.cs" /> 87 <Compile Include=" Plugin.cs" />86 <Compile Include="EditableDataset.cs" /> <Compile Include="DataSetStatisticInfo.cs" /> 87 <Compile Include="IDataSetStatisticInfo.cs" /> <Compile Include="Plugin.cs" /> 88 88 <Compile Include="Properties\AssemblyInfo.cs" /> 89 89 <None Include="Properties\AssemblyInfo.cs.frame" /> -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r10147 r10148 225 225 } 226 226 227 public bool IsType<T>(int columnIndex) { 228 return variableValues[variableNames[columnIndex]] is IList<T>; 229 } 230 227 231 public string GetValue(int rowIndex, int columnIndex) { 228 232 return variableValues[variableNames[columnIndex]][rowIndex].ToString(); -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataset.cs
r10145 r10148 35 35 IEnumerable<double> GetDoubleValues(string variableName, IEnumerable<int> rows); 36 36 ReadOnlyCollection<double> GetReadOnlyDoubleValues(string variableName); 37 38 bool IsType<T>(int columnIndex); 37 39 } 38 40 }
Note: See TracChangeset
for help on using the changeset viewer.