[3996] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12012] | 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3996] | 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;
|
---|
[5500] | 23 | using System.Collections.Generic;
|
---|
[3996] | 24 | using HeuristicLab.Common;
|
---|
| 25 |
|
---|
[5490] | 26 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
[12492] | 27 | public class OnlinePearsonsRCalculator : IOnlineCalculator {
|
---|
[5942] | 28 | private OnlineCovarianceCalculator covCalculator = new OnlineCovarianceCalculator();
|
---|
| 29 | private OnlineMeanAndVarianceCalculator sxCalculator = new OnlineMeanAndVarianceCalculator();
|
---|
| 30 | private OnlineMeanAndVarianceCalculator syCalculator = new OnlineMeanAndVarianceCalculator();
|
---|
[3996] | 31 |
|
---|
[12492] | 32 | public double R {
|
---|
[3996] | 33 | get {
|
---|
[5942] | 34 | double xVar = sxCalculator.PopulationVariance;
|
---|
| 35 | double yVar = syCalculator.PopulationVariance;
|
---|
[4126] | 36 | if (xVar.IsAlmost(0.0) || yVar.IsAlmost(0.0)) {
|
---|
| 37 | return 0.0;
|
---|
| 38 | } else {
|
---|
[12492] | 39 | return covCalculator.Covariance / (Math.Sqrt(xVar) * Math.Sqrt(yVar));
|
---|
[4126] | 40 | }
|
---|
[3996] | 41 | }
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[12492] | 44 | public OnlinePearsonsRCalculator() { }
|
---|
[3996] | 45 |
|
---|
[5942] | 46 | #region IOnlineCalculator Members
|
---|
| 47 | public OnlineCalculatorError ErrorState {
|
---|
| 48 | get { return covCalculator.ErrorState | sxCalculator.PopulationVarianceErrorState | syCalculator.PopulationVarianceErrorState; }
|
---|
[5894] | 49 | }
|
---|
[4022] | 50 | public double Value {
|
---|
[12492] | 51 | get { return R; }
|
---|
[4022] | 52 | }
|
---|
[3996] | 53 | public void Reset() {
|
---|
[5942] | 54 | covCalculator.Reset();
|
---|
| 55 | sxCalculator.Reset();
|
---|
| 56 | syCalculator.Reset();
|
---|
[3996] | 57 | }
|
---|
| 58 |
|
---|
[4122] | 59 | public void Add(double x, double y) {
|
---|
[5746] | 60 | // no need to check validity of values explicitly here as it is checked in all three evaluators
|
---|
[5942] | 61 | covCalculator.Add(x, y);
|
---|
| 62 | sxCalculator.Add(x);
|
---|
| 63 | syCalculator.Add(y);
|
---|
[3996] | 64 | }
|
---|
| 65 |
|
---|
| 66 | #endregion
|
---|
| 67 |
|
---|
[5942] | 68 | public static double Calculate(IEnumerable<double> first, IEnumerable<double> second, out OnlineCalculatorError errorState) {
|
---|
[5500] | 69 | IEnumerator<double> firstEnumerator = first.GetEnumerator();
|
---|
| 70 | IEnumerator<double> secondEnumerator = second.GetEnumerator();
|
---|
[12492] | 71 | var calculator = new OnlinePearsonsRCalculator();
|
---|
[5500] | 72 |
|
---|
[5564] | 73 | // always move forward both enumerators (do not use short-circuit evaluation!)
|
---|
| 74 | while (firstEnumerator.MoveNext() & secondEnumerator.MoveNext()) {
|
---|
[6961] | 75 | double original = firstEnumerator.Current;
|
---|
[5500] | 76 | double estimated = secondEnumerator.Current;
|
---|
[12492] | 77 | calculator.Add(original, estimated);
|
---|
| 78 | if (calculator.ErrorState != OnlineCalculatorError.None) break;
|
---|
[5500] | 79 | }
|
---|
| 80 |
|
---|
[5564] | 81 | // check if both enumerators are at the end to make sure both enumerations have the same length
|
---|
[12492] | 82 | if (calculator.ErrorState == OnlineCalculatorError.None &&
|
---|
[5945] | 83 | (secondEnumerator.MoveNext() || firstEnumerator.MoveNext())) {
|
---|
[5500] | 84 | throw new ArgumentException("Number of elements in first and second enumeration doesn't match.");
|
---|
| 85 | } else {
|
---|
[12492] | 86 | errorState = calculator.ErrorState;
|
---|
| 87 | return calculator.R;
|
---|
[5500] | 88 | }
|
---|
| 89 | }
|
---|
[3996] | 90 | }
|
---|
| 91 | }
|
---|