BCa BootStrapSee Bibliography for more details about this statistical test. Resultsfunction isValidInput($k, $alpha, $theta, $values) { $errors = array(); if (!is_numeric($k) or !is_numeric($alpha) or !is_numeric($theta)) { echo "Some parameters are missing or wrong type, please " . "complete datas ! "; return false; } if ($values == "") { echo "Values are missing, please complete datas ! "; return false; } if ($alpha <= 0.0 || $alpha >= 1.0) array_push($errors, "Parameter alpha" . " must be ]0..1[ "); if ($k > 10000) array_push($errors, "Number of samples" . " must be ≤ 10000 "); if (count($errors) > 0) { echo "";
foreach ($errors as $error) {
echo $error . " Please fill values above... "; } else if (isValidInput($k, $a, $theta, $values)) { echo ''; system("tools/bootstrap_bca " . escapeshellcmd("$k $a $theta $values")); echo ""; } ?> Other implementationsNone provided yet... BibliographyBuvat Irène, "Introduction à l'approche bootstrap", Technical paper, U494 INSERM, 2000. Efron B. and Tibshirani R. "An introduction to the BootStrap", Chapman and Hall, 1993. |
||
print ' | '; ?>||