-3

これをC#でコーディングする必要があります

以下の例で順を追って説明できますか?

vector 1 : [0.3, 0, 1.7, 2.2]
vector 2 : [0, 3.3, 1.2, 0]

たいへん

これはドキュメントのクラスタリングで使用されます

4

1 に答える 1

7

それはJavaバージョンに関する私の答えの適応です

Javaで2つの整数配列間の相関関係を見つける方法

C#用。まず、ピアソン相関は

http://en.wikipedia.org/wiki/Correlation_and_dependence

両方のベクトル ( とするIEnumerable<Double>) が同じ長さであるという条件で

  private static double Correlation(IEnumerable<Double> xs, IEnumerable<Double> ys) {
    // sums of x, y, x squared etc.
    double sx = 0.0;
    double sy = 0.0;
    double sxx = 0.0;
    double syy = 0.0;
    double sxy = 0.0;

    int n = 0;

    using (var enX = xs.GetEnumerator()) {
      using (var enY = ys.GetEnumerator()) {
        while (enX.MoveNext() && enY.MoveNext()) {
          double x = enX.Current;
          double y = enY.Current;

          n += 1;
          sx += x;
          sy += y;
          sxx += x * x;
          syy += y * y;
          sxy += x * y;
        }
      }
    }

    // covariation
    double cov = sxy / n - sx * sy / n / n;
    // standard error of x
    double sigmaX = Math.Sqrt(sxx / n -  sx * sx / n / n);
    // standard error of y
    double sigmaY = Math.Sqrt(syy / n -  sy * sy / n / n);

    // correlation is just a normalized covariation
    return cov / sigmaX / sigmaY;
  }

テスト:

  // -0.539354840012899
  Double result = Correlation(
    new Double[] { 0.3, 0, 1.7, 2.2 }, 
    new Double[] { 0, 3.3, 1.2, 0 });
于 2016-02-29T14:54:49.070 に答える