Nothing
print.SPRT <-
function(x = SPRT,...) {
cat("Wald's Sequential Probability Ratio Test (SPRT)\n\n")
if (!is.null(x$decision)) {
cat("Decision:", x$interpretation, "", sep = "\n")
cat("Distribution:", x$distribution, "\n", sep = " ")
cat("n: ", x$n, ", k: ", x$k, "\n", sep = "")
cat("h0: ", x$h0, ", h1: ", x$h1, "\n\n", sep = "")
}
cat("Wald boundaries (log):\n")
cat("> B boundary: ", round(x$wald.B, 3), "\n", sep = " ")
cat("> A boundary: ", round(x$wald.A, 3), "\n", sep = " ")
if (!is.null(x$llr)) {
cat("> Likelihood ratio: ", round(x$llr, 3), "\n", sep = " ")
}
if (!is.null(x$data.sum)) {
cat("\nPreview k boundaries:\n")
print.data.frame(head(x$data.sum, 5), digits = 3, row.names = FALSE)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.