メイン oddsratio.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="io.js">document.write("io.js ファイルが見つかりません??<br>")</script>
<script src="pxg.js">document.write("pxg.js ファイルが見つかりません??<br>")</script>

<script language="JavaScript">
<!--
function sub1(p, or, se) {
  var z = pxg(p)
  var lo = Math.exp(Math.log(or)-z*se)
  var up = Math.exp(Math.log(or)+z*se)
  printf("%i%%信頼限界 [ %g , %g ]\n", 100-p*200, lo, up)
}

function calc(frm)
{
  var or, se
  var a = frm.a.value
  var b = frm.b.value
  var c = frm.c.value
  var d = frm.d.value
  if (isNaN(a) || a != Math.ceil(a) || a <= 0 ||
    isNaN(b) || b != Math.ceil(b) || b <= 0 ||
    isNaN(c) || c != Math.ceil(c) || c <= 0 ||
    isNaN(d) || d != Math.ceil(d) || d <= 0) {
    printf("計算できません\n")
    return
  }
  or = a*d/(b*c)
  se = Math.sqrt(1/a+1/b+1/c+1/d)
  printf("%5i %5i\n%5i %5i\n", a, b, c, d)
  printf("オッズ比 = %g\n", or)
  sub1(0.05, or, se)
  sub1(0.025, or, se)
  sub1(0.005, or, se)
  sep(50)
}
//-->
</script>
</head>

<body bgcolor="#ffffff">
<font size="+2"><b>オッズ比とその信頼区間</b></font> <a  href="src/oddsratio.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></td><th>+</th><th>−</th></tr>
  <tr>
    <td rowspan=2>群</td>
    <td>a <input name="a" value="" size=5></td>
    <td>b <input name="b" value="" size=5></td>
  </tr>
  <tr>
    <td>c <input name="c" value="" size=5></td>
    <td>d <input name="d" value="" size=5></td>
  </tr>
</table>
<table>
  <tr>
    <td nowrap><br><input type="button" name="calcurate" value="計算開始" onClick="calc(this.form)"></td>
    <td nowrap><br><input type="button" name="clear" value="入力欄クリア" onClick="this.form.a.value=this.form.b.value=this.form.c.value=this.form.d.value=''"></td>
    <td nowrap><br><input type="button" name="clear" value="出力欄クリア" onClick="this.form.result.value=''"></td>
  </tr>
</table>

出力欄<br><textarea name="result" ROWS=24 COLS=80></textarea>
</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>

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

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

Made with Macintosh