Skip to content

Instantly share code, notes, and snippets.

@gcchaan
gcchaan / stopwatch.html
Created August 6, 2013 16:17
Stop Watch written in Javascript.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>ストップウォッチ</title>
</head>
<body>
<div id="hour"></div>
<div id="minute"></div>
<div id="second">0.00</div>
@gcchaan
gcchaan / 7kai_hyou.php
Created February 24, 2013 11:30
カイ2乗分布表 Chi-square distribution
<?php
//[p][df]
//0.05
$kai_hyou[5][1] = 3.84;
$kai_hyou[5][] = 5.99;
$kai_hyou[5][] = 7.81;
$kai_hyou[5][] = 9.49;
$kai_hyou[5][] = 11.07;
$kai_hyou[5][] = 12.59;
$kai_hyou[5][] = 14.07;
@gcchaan
gcchaan / x2_2m.php
Created February 24, 2013 11:11
生物統計学。カイ二乗検定(データ形式:2×m) Chi-Square Test of Independence (for biostatistics)
<html lang=ja>
<head>
<meta http-equiv="Content-Type" content="text/HTML; charset=EUC-JP">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">
<!--
.top {border-top: 1px solid #000000;}
.jouge {border-top: 1px solid #000000;
border-bottom: 1px solid #000000;}
.bot {border-bottom: 1px solid #000000;}