Changeset 18006 for branches/3087_Ceres_Integration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces
- Timestamp:
- 07/13/21 10:55:09 (3 years ago)
- Location:
- branches/3087_Ceres_Integration
- Files:
-
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/3087_Ceres_Integration
- Property svn:mergeinfo changed
-
branches/3087_Ceres_Integration/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
-
branches/3087_Ceres_Integration/HeuristicLab.Problems.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/3087_Ceres_Integration/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Regression/IRegressionProblemData.cs
r17579 r18006 1 1 #region License Information 2 2 3 /* HeuristicLab 3 4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 18 19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 20 */ 21 20 22 #endregion 21 23 … … 27 29 public interface IRegressionProblemData : IDataAnalysisProblemData { 28 30 string TargetVariable { get; set; } 29 30 IntervalCollection VariableRanges { get;} 31 31 IntervalCollection VariableRanges { get; } 32 32 IEnumerable<double> TargetVariableValues { get; } 33 33 IEnumerable<double> TargetVariableTrainingValues { get; }
Note: See TracChangeset
for help on using the changeset viewer.