Does LINQ model the aggregate SQL function STDDEV() (standard deviation)?

If not, what is the simplest / best-practices way to calculate it?

Example:

  SELECT test_id, AVERAGE(result) avg, STDDEV(result) std 
    FROM tests
GROUP BY test_id
link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

You can make your own extension calculating it

public static class Extensions
{
    public static double StdDev(this IEnumerable<double> values)
    {
       double ret = 0;
       int count = values.Count();
       if (count  > 1)
       {
          //Compute the Average
          double avg = values.Average();

          //Perform the Sum of (value-avg)^2
          double sum = values.Sum(d => (d - avg) * (d - avg));

          //Put it all together
          ret = Math.Sqrt(sum / count);
       }
       return ret;
    }
}

Transformed into extension from Adding Standard Deviation to LINQ by Chris Bennett.

link|improve this answer
1  
I'd make that test "values.Count() > 1", because if it's exactly 1 you'll have a divide by zero error when you calculate the return value. – duffymo Feb 12 '10 at 17:59
1  
Math.pow(d-avg, 2)? I'd skip the function call and use (d-avg)*(d-avg) – duffymo Feb 12 '10 at 18:00
How about adding a usage example. Thanks! – 白ジェームス Jan 7 '11 at 21:30
1  
The line ret = Math.Sqrt((sum) / values.Count()-1); is missing parentheses around values.Count()-1, it should be ret = Math.Sqrt(sum / (values.Count()-1)); – Alex Peck Jun 22 '11 at 8:01
feedback

Dynami's answer works but makes multiple passes through the data to get a result. This is a single pass method that provides the correct output:

public static double StdDev(this IEnumerable<double> values)
{
    // ref: http://warrenseen.com/blog/2006/03/13/how-to-calculate-standard-deviation/
    double mean = 0.0;
    double sum = 0.0;
    double stdDev = 0.0;
    int n = 0;
    foreach (double val in values)
    {
        n++;
        double delta = val - mean;
        mean += delta / n;
        sum += delta * (val - mean);
    }
    if (1 < n)
        stdDev = Math.Sqrt(sum / (n - 1));

    return stdDev;
}
link|improve this answer
You may not have iterated the entire sequence more than once, but your method will still make two calls to GetEnumerator (which could be triggering a complex SQL query). Why not skip the condition and check n at the end of the loop? – Gideon Engelberth May 21 '10 at 23:47
Thanks Gideon, removes a level of nesting too. You're correct about the SQL, it's not relevant to what I'm working on so I hadn't considered the implication. – David Clarke May 23 '10 at 22:42
You're missing a definition of n. Also it should be noted that dividing the sum by (n-1) instead of n makes this a sample standard deviation – Neil Dec 7 '11 at 15:32
Thanks Neil, added declaration for n and your point about sample standard deviation is noted. – David Clarke Dec 7 '11 at 20:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.