Nothing
get_seq_ttest_decision <- function(likelihood_ratio, boundaries){
if (likelihood_ratio >= boundaries$A) {
decision <- "accept H1"
} else if (likelihood_ratio <= boundaries$B) {
decision <- "accept H0"
} else{
decision <- "continue sampling"
}
decision
}
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.