Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/LinearRegression/LinearRegressionUtil.cs @ 3982

Last change on this file since 3982 was 3848, checked in by mkommend, 14 years ago

updated LinearRegressionSolutionCreator (ticket #1012)

File size: 2.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26
27namespace HeuristicLab.Problems.DataAnalysis.Regression.LinearRegression {
28  public static class LinearRegressionUtil {
29    public static double[,] PrepareInputMatrix(Dataset dataset, string targetVariable, IEnumerable<string> allowedInputVariables, int start, int end) {
30      List<int> allowedRows = CalculateAllowedRows(dataset, targetVariable, allowedInputVariables, start, end);
31
32      double[,] matrix = new double[allowedRows.Count, allowedInputVariables.Count() +1];
33      for (int row = 0; row < allowedRows.Count; row++) {
34        int col = 0;
35        foreach (string column in allowedInputVariables) {
36          matrix[row, col] = dataset[column, row];
37          col++;
38        }
39        matrix[row, allowedInputVariables.Count()] = dataset[targetVariable, row];
40      }
41      return matrix;
42    }
43
44    private static List<int> CalculateAllowedRows(Dataset dataset, string targetVariable, IEnumerable<string> allowedInputVariables, int start, int end) {
45      List<int> allowedRows = new List<int>();
46      bool add = false;
47
48      for (int row = start; row < end; row++) {
49        add = true;
50        foreach (string column in allowedInputVariables) {
51          double value = dataset[column, row];
52          if (double.IsInfinity(value) ||
53            double.IsNaN(value))
54            add = false;
55        }
56        if (double.IsNaN(dataset[targetVariable, row]))
57          add = false;
58        if (add)
59          allowedRows.Add(row);
60        add = true;
61      }
62      return allowedRows;
63    }
64  }
65}
Note: See TracBrowser for help on using the repository browser.