1. ホーム
  2. linq

[解決済み] LINQにおける標準偏差

2023-04-12 04:34:59

質問

LINQはSQLの集約関数をモデル化していますか? STDDEV() (標準偏差)をモデル化しますか?

そうでない場合、それを計算する最も簡単な/ベストプラクティスの方法は何ですか?

  SELECT test_id, AVERAGE(result) avg, STDDEV(result) std 
    FROM tests
GROUP BY test_id

どのように解決するのですか?

自分で計算する拡張機能を作ることができます。

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;
    }
}

もしあなたが サンプル があるのであれば、そのサンプルは ret = Math.Sqrt(sum / (count - 1)); .

から拡張子に変換され LINQに標準偏差を追加する by Chris Bennett .