メイン kendall-w.html   Last modified: Sep 01, 2009
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;CHARSET=EUC-JP">
<link rel="shortcut icon" href="../favicon.ico">
<title>JavaScript</title>
<script src="gxp.js">document.write("gxp.js ファイルが見つかりません??<br>")</script>
<script src="xxp.js">document.write("xxp.js ファイルが見つかりません??<br>")</script>
<script src="io.js">document.write("io.js ファイルが見つかりません??<br>")</script>

<script language="JavaScript">
<!--

function order(x, col, n)
{
  var i, j, eq, less, temp, tie = 0
  temp = new Array(n)
  for (i = 0; i < n; i++) {
    eq = less = 0
    for (j = 0; j < n; j++) {
      if (x[j][col] == x[i][col]) {
        eq++
      }
      else if (x[j][col] < x[i][col]) {
        less++
      }
    }
    temp[i] = less+(eq+1)/2
    tie = tie+eq*eq-1
  }
  for (i = 0; i < n; i++) {
    x[i][col] = temp[i]
  }
  return tie
}

function calc(data_string)
{
  var i, j, nc, nv, data, tie, r, t_sum, sum, s, w, chi, p
  if ((data = getdata(data_string, 0)) == false) return
  nc = data.length
  nv = data[0].length
  if (nc < 2) {
    printf("ケース数が1以下です\n")
    return
  }

  tie = 0
  for (j = 0; j < nv; j++) {
    tie += order(data, j, nc)
  }

  r = new Array(nc)
  t_sum = 0
  for (i = 0; i < nc; i++) {
    sum = 0
    for (j = 0; j < nv; j++) {
      sum += data[i][j]
    }
    r[i] = sum
    t_sum += sum
  }
  t_sum /= nc

  s = 0
  for (i = 0; i < nc; i++) {
    s += Math.pow(r[i]-t_sum, 2)
  }

  w = 12*s/(nv*nv*(Math.pow(nc, 3)-nc)-nv*tie)
  chi = nv*(nc-1)*w
  p = xxp(chi, nc-1)

  printf("★ ケンドールの一致度係数\n\n")
  printf("W = %g\n", w)
  printf("\n以下の検定は漸近近似に基づくものです\n")
  if (nc <= 7) {
    printf("評定される対象数が 7 以下(%i)ですので,この近似は使わない方がよいでしょう\n", nc)
  }
  printf("カイ二乗値 = %g\n", chi)
  printf("自由度 = %i\n", nc-1)
  printf("P 値 = %g\n", p)
  printf("\n")
  sep(40)
  printf("\n")
}
//-->
</script>
</head>

<body bgcolor="#ffffff">
<font size="+2"><b>ケンドールの一致度係数</b></font> <a  href="src/kendall-w.html"><img src="png/src.png" width=35 height=11 alt="src" align=top></a>     Last modified: Jun 01, 2006<hr noshade><p>
<font color="#ff0000" size="+2">以下のプログラムのサポートは終了しました。自己責任でお使い下さい。</font>

<form name=Result>
<script language="JavaScript">
<!--
//-->JavaScript がサポートされていないブラウザですか?
</script>
<table><tr>
<td><input type="button" name="calcurate" value="計算開始" onClick="calc(this.form.data.value)">  </td>
<td><input type="button" name="clear" value="入力欄クリア" onClick="this.form.data.value=''">  </td>
<td><input type="button" name="clear" value="出力欄クリア" onClick="this.form.result.value=''">  </td>
<td nowrap><img src="../gra/button3.png" width=9 height=9 alt="・"> <a href="exa/kendall-w.html">使用法</a></td>
</tr></table>
<p>
<table>
<tr>
<td>入力欄<br><textarea name="data" ROWS=20 COLS=15></textarea></td>
<td>出力欄<br><textarea name="result" ROWS=20 COLS=80></textarea></td>
</tr>
</table>
</form>

<p><hr noshade>
<img src="../gra/button3.png" width=9 height=9 alt="・"> <A HREF="javascript:history.go(-1)">直前のページへ戻る</A>  <img src="../gra/button3.png" width=9 height=9 alt="・"> <a href="../mail.html">E-mail to Shigenobu AOKI</a>
<p><center><IMG SRC="../gra/ume5.png" width=121 height=37 ALT="Made with Macintosh"></center>
</body>
</html>

サブ gxp.js   Last modified: Mar 25, 2004
サブ xxp.js   Last modified: Mar 25, 2004
サブ io.js   Last modified: Mar 25, 2004

・ 直前のページへ戻る  ・ E-mail to Shigenobu AOKI

Made with Macintosh