[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[3742] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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;
|
---|
[3452] | 24 | using System.Linq;
|
---|
[2] | 25 |
|
---|
[3462] | 26 | namespace HeuristicLab.Common {
|
---|
| 27 | public static class EnumerableStatisticExtensions {
|
---|
[2] | 28 | /// <summary>
|
---|
[3452] | 29 | /// Calculates the median element of the enumeration.
|
---|
[2] | 30 | /// </summary>
|
---|
| 31 | /// <param name="values"></param>
|
---|
| 32 | /// <returns></returns>
|
---|
[3452] | 33 | public static double Median(this IEnumerable<double> values) {
|
---|
| 34 | int n = values.Count();
|
---|
| 35 | if (n == 0) throw new InvalidOperationException("Enumeration contains no elements.");
|
---|
[2] | 36 |
|
---|
| 37 | double[] sortedValues = new double[n];
|
---|
[3452] | 38 | int i = 0;
|
---|
| 39 | foreach (double x in values)
|
---|
| 40 | sortedValues[i++] = x;
|
---|
[2] | 41 |
|
---|
| 42 | Array.Sort(sortedValues);
|
---|
| 43 |
|
---|
| 44 | // return the middle element (if n is uneven) or the average of the two middle elements if n is even.
|
---|
[1786] | 45 | if (n % 2 == 1) {
|
---|
[2] | 46 | return sortedValues[n / 2];
|
---|
| 47 | } else {
|
---|
[3452] | 48 | return (sortedValues[(n / 2) - 1] + sortedValues[n / 2]) / 2.0;
|
---|
[2] | 49 | }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 |
|
---|
| 53 | /// <summary>
|
---|
| 54 | /// Calculates the standard deviation of values.
|
---|
| 55 | /// </summary>
|
---|
| 56 | /// <param name="values"></param>
|
---|
| 57 | /// <returns></returns>
|
---|
[3452] | 58 | public static double StandardDeviation(this IEnumerable<double> values) {
|
---|
[2] | 59 | return Math.Sqrt(Variance(values));
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | /// <summary>
|
---|
[3452] | 63 | /// Calculates the variance of values. (sum (x - x_mean)² / n)
|
---|
[2] | 64 | /// </summary>
|
---|
| 65 | /// <param name="values"></param>
|
---|
| 66 | /// <returns></returns>
|
---|
[3452] | 67 | public static double Variance(this IEnumerable<double> values) {
|
---|
[3984] | 68 | int m_n = 0;
|
---|
| 69 | double m_oldM = 0.0;
|
---|
| 70 | double m_newM = 0.0;
|
---|
| 71 | double m_oldS = 0.0;
|
---|
| 72 | double m_newS = 0.0;
|
---|
| 73 | foreach (double x in values) {
|
---|
| 74 | m_n++;
|
---|
| 75 | if (m_n == 1) {
|
---|
| 76 | m_oldM = m_newM = x;
|
---|
| 77 | m_oldS = 0.0;
|
---|
| 78 | } else {
|
---|
| 79 | m_newM = m_oldM + (x - m_oldM) / m_n;
|
---|
| 80 | m_newS = m_oldS + (x - m_oldM) * (x - m_newM);
|
---|
[2] | 81 |
|
---|
[3984] | 82 | // set up for next iteration
|
---|
| 83 | m_oldM = m_newM;
|
---|
| 84 | m_oldS = m_newS;
|
---|
[2] | 85 | }
|
---|
| 86 | }
|
---|
[3984] | 87 | return ((m_n > 1) ? m_newS / (m_n - 1) : 0.0);
|
---|
[2] | 88 | }
|
---|
[4652] | 89 |
|
---|
| 90 | /// <summary>
|
---|
| 91 | /// Calculates the pth percentile of the values.
|
---|
| 92 | /// </summary
|
---|
| 93 | public static double Percentile(this IEnumerable<double> values, double p) {
|
---|
| 94 | if (values.Count() == 0) throw new InvalidOperationException("Enumeration contains no elements.");
|
---|
| 95 | if (values.Count() == 1) return values.ElementAt(0);
|
---|
| 96 |
|
---|
| 97 | double[] sortedValues = values.ToArray();
|
---|
| 98 | Array.Sort(sortedValues);
|
---|
| 99 |
|
---|
| 100 | int n = sortedValues.Length;
|
---|
| 101 | if (p.IsAlmost(0.0)) return sortedValues[0];
|
---|
| 102 | if (p.IsAlmost(1.0)) return sortedValues[n - 1];
|
---|
| 103 |
|
---|
| 104 | double t = p * (n - 1);
|
---|
| 105 | int index = (int)Math.Floor(t);
|
---|
| 106 | double percentage = t - index;
|
---|
| 107 | return sortedValues[index] * (1 - percentage) + sortedValues[index + 1] * percentage;
|
---|
| 108 | }
|
---|
[2] | 109 | }
|
---|
| 110 | }
|
---|