- Timestamp:
- 12/17/16 15:42:19 (8 years ago)
- Location:
- branches/symbreg-factors-2650
- Files:
-
- 6 edited
- 6 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650
- Property svn:mergeinfo changed
/trunk/sources merged: 14457-14458,14463-14465,14468-14469,14475-14476,14478-14479,14481-14483,14486,14493-14494
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.DataAnalysis.Views merged: 14464,14468-14469,14483,14486
- Property svn:mergeinfo changed
-
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationCalculator.cs
r14185 r14498 50 50 51 51 IList<string> doubleVariableNames = dataset.DoubleVariables.ToList(); 52 OnlineCalculatorError error = OnlineCalculatorError.None; 52 53 53 int length = doubleVariableNames.Count; 54 54 double[,] elements = new double[length, length]; … … 68 68 var var2 = dataset.GetDoubleValues(doubleVariableNames[j], indices); 69 69 70 OnlineCalculatorError error = OnlineCalculatorError.None; 70 71 if (bwInfo.IgnoreMissingValues) { 71 72 var filtered = FilterNaNValues(var1, var2); … … 78 79 } 79 80 elements[j, i] = elements[i, j]; 80 81 81 }); 82 82 worker.ReportProgress((int)(((double)counter) / length * 100)); 83 83 } 84 84 85 e.Result = elements; 85 86 worker.ReportProgress(100); -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj
r14449 r14498 252 252 <Compile Include="Regression\RegressionFeatureCorrelationView.Designer.cs"> 253 253 <DependentUpon>RegressionFeatureCorrelationView.cs</DependentUpon> 254 </Compile> 255 <Compile Include="Regression\RegressionSolutionLineChartViewBase.cs"> 256 <SubType>UserControl</SubType> 257 </Compile> 258 <Compile Include="Regression\RegressionSolutionLineChartViewBase.Designer.cs"> 259 <DependentUpon>RegressionSolutionLineChartViewBase.cs</DependentUpon> 260 </Compile> 261 <Compile Include="Regression\RegressionSolutionResidualsLineChartView.cs"> 262 <SubType>UserControl</SubType> 263 </Compile> 264 <Compile Include="Regression\RegressionSolutionResidualsLineChartView.Designer.cs"> 265 <DependentUpon>RegressionSolutionResidualsLineChartView.cs</DependentUpon> 254 266 </Compile> 255 267 <Compile Include="Regression\RegressionSolutionVariableImpactsView.cs"> -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionTargetResponseGradientView.cs
r14330 r14498 113 113 limitView.Content.Upper = axisMax; 114 114 115 // create dataset 116 var allowedInputVariables = Content.ProblemData.AllowedInputVariables; 115 // create dataset of problemData input variables and model input variables 116 // necessary workaround to have the variables in the occuring order 117 var inputvariables = 118 new HashSet<string>(Content.ProblemData.AllowedInputVariables.Union(Content.Model.VariablesUsedForPrediction)); 119 var allowedInputVariables = 120 Content.ProblemData.Dataset.VariableNames.Where(v => inputvariables.Contains(v)).ToList(); 121 122 117 123 var doubleVariables = allowedInputVariables.Where(problemData.Dataset.VariableHasType<double>); 118 124 var doubleVariableValues = (IEnumerable<IList>)doubleVariables.Select(x => new List<double> { problemData.Dataset.GetDoubleValues(x, problemData.TrainingIndices).Median() }); -
branches/symbreg-factors-2650/HeuristicLab.Problems.DataAnalysis.Views/3.4/TimeSeriesPrognosis/TimeSeriesPrognosisLineChartView.cs
r14449 r14498 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.