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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Core;
|
---|
27 | using HeuristicLab.Common;
|
---|
28 | using HeuristicLab.Data;
|
---|
29 | using HeuristicLab.Parameters;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Problems.DataAnalysis.Evaluators {
|
---|
32 | public class SimpleRSquaredEvaluator : SimpleEvaluator {
|
---|
33 | public ILookupParameter<DoubleValue> RSquaredParameter {
|
---|
34 | get { return (ILookupParameter<DoubleValue>)Parameters["RSquared"]; }
|
---|
35 | }
|
---|
36 |
|
---|
37 | public SimpleRSquaredEvaluator() {
|
---|
38 | Parameters.Add(new LookupParameter<DoubleValue>("RSquared", "The squared Pearson's Product Moment Correlation (R²) of estimated values and original values."));
|
---|
39 | }
|
---|
40 |
|
---|
41 | protected override void Apply(DoubleMatrix values) {
|
---|
42 | var original = from i in Enumerable.Range(0, values.Rows)
|
---|
43 | select values[i, ORIGINAL_INDEX];
|
---|
44 | var estimated = from i in Enumerable.Range(0, values.Rows)
|
---|
45 | select values[i, ESTIMATION_INDEX];
|
---|
46 | RSquaredParameter.ActualValue = new DoubleValue(Calculate(original, estimated));
|
---|
47 | }
|
---|
48 |
|
---|
49 |
|
---|
50 | public static double Calculate(IEnumerable<double> original, IEnumerable<double> estimated) {
|
---|
51 | var originalEnumerator = original.GetEnumerator();
|
---|
52 | var estimatedEnumerator = estimated.GetEnumerator();
|
---|
53 | originalEnumerator.MoveNext();
|
---|
54 | estimatedEnumerator.MoveNext();
|
---|
55 | double e = estimatedEnumerator.Current;
|
---|
56 | double o = originalEnumerator.Current;
|
---|
57 |
|
---|
58 | // stable and iterative calculation of R² in one pass over original and estimated
|
---|
59 | double sum_sq_x = 0.0;
|
---|
60 | double sum_sq_y = 0.0;
|
---|
61 | double sum_coproduct = 0.0;
|
---|
62 | if (IsInvalidValue(o) || IsInvalidValue(e)) {
|
---|
63 | throw new ArgumentException("R² is not defined for variables with NaN or infinity values.");
|
---|
64 | }
|
---|
65 | double mean_x = o;
|
---|
66 | double mean_y = e;
|
---|
67 | int n = 1;
|
---|
68 | while (originalEnumerator.MoveNext() & estimatedEnumerator.MoveNext()) {
|
---|
69 | e = estimatedEnumerator.Current;
|
---|
70 | o = originalEnumerator.Current;
|
---|
71 | double sweep = (n - 1.0) / n;
|
---|
72 | if (IsInvalidValue(o) || IsInvalidValue(e)) {
|
---|
73 | throw new ArgumentException("Correlation coefficient is not defined for variables with NaN or infinity values.");
|
---|
74 | }
|
---|
75 | double delta_x = o - mean_x;
|
---|
76 | double delta_y = e - mean_y;
|
---|
77 | sum_sq_x += delta_x * delta_x * sweep;
|
---|
78 | sum_sq_y += delta_y * delta_y * sweep;
|
---|
79 | sum_coproduct += delta_x * delta_y * sweep;
|
---|
80 | mean_x += delta_x / n;
|
---|
81 | mean_y += delta_y / n;
|
---|
82 | n++;
|
---|
83 | }
|
---|
84 | if (estimatedEnumerator.MoveNext() || originalEnumerator.MoveNext()) {
|
---|
85 | throw new ArgumentException("Number of elements in original and estimated enumeration doesn't match.");
|
---|
86 | } else {
|
---|
87 | double pop_sd_x = Math.Sqrt(sum_sq_x / n);
|
---|
88 | double pop_sd_y = Math.Sqrt(sum_sq_y / n);
|
---|
89 | double cov_x_y = sum_coproduct / n;
|
---|
90 |
|
---|
91 | if (pop_sd_x.IsAlmost(0.0) || pop_sd_y.IsAlmost(0.0))
|
---|
92 | return 0.0;
|
---|
93 | else {
|
---|
94 | double r = cov_x_y / (pop_sd_x * pop_sd_y);
|
---|
95 | return r * r;
|
---|
96 | }
|
---|
97 | }
|
---|
98 | }
|
---|
99 |
|
---|
100 | private static bool IsInvalidValue(double d) {
|
---|
101 | return double.IsNaN(d) || double.IsInfinity(d);
|
---|
102 | }
|
---|
103 | }
|
---|
104 | }
|
---|