- Timestamp:
- 05/05/17 20:06:42 (8 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 14483,14486
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 14483,14486
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/TimeSeriesPrognosis/TimeSeriesPrognosisLineChartView.cs
r14939 r14940 40 40 } 41 41 42 protected override void GetTestSeries(out int[] x, out double[] y) { 42 protected override void GetTrainingSeries(out int[] idx, out double[] y) { 43 idx = Content.ProblemData.TrainingIndices.ToArray(); 44 y = Content.EstimatedTrainingValues.ToArray(); 45 } 46 47 protected override void GetTestSeries(out int[] idx, out double[] y) { 43 48 // treat the whole test partition as prognosis horizon 44 x = Content.ProblemData.TestIndices.ToArray();49 idx = Content.ProblemData.TestIndices.ToArray(); 45 50 y = Content.PrognosedTestValues.ToArray(); 46 51 } 47 52 48 protected override void GetAllValuesSeries(out int[] x, out double[] y) {53 protected override void GetAllValuesSeries(out int[] idx, out double[] y) { 49 54 // not supported 50 x = new int[0];55 idx = new int[0]; 51 56 y = new double[0]; 52 57 }
Note: See TracChangeset
for help on using the changeset viewer.