- Timestamp:
- 11/22/19 10:06:42 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3040_VectorBasedGP/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataset.cs
r17180 r17364 34 34 IEnumerable<string> StringVariables { get; } 35 35 IEnumerable<string> DateTimeVariables { get; } 36 IEnumerable<string> DoubleVectorVariables { get; } 36 37 37 38 bool ContainsVariable(string variablename); … … 48 49 ReadOnlyCollection<string> GetReadOnlyStringValues(string VariableName); 49 50 50 System.DateTime GetDateTimeValue(string variableName, int row);51 DateTime GetDateTimeValue(string variableName, int row); 51 52 IEnumerable<DateTime> GetDateTimeValues(string variableName); 52 53 IEnumerable<DateTime> GetDateTimeValues(string variableName, IEnumerable<int> rows); 53 54 ReadOnlyCollection<DateTime> GetReadOnlyDateTimeValues(string variableName); 55 56 IReadOnlyList<double> GetDoubleVectorValue(string variableName, int row); 57 IEnumerable<IReadOnlyList<double>> GetDoubleVectorValues(string variableName); 58 IEnumerable<IReadOnlyList<double>> GetDoubleVectorValues(string variableName, IEnumerable<int> rows); 59 ReadOnlyCollection<IReadOnlyList<double>> GetReadOnlyDoubleVectorValues(string variableName); 54 60 } 55 61 }
Note: See TracChangeset
for help on using the changeset viewer.