Nothing
calc_seq_ttest_boundaries <- function(power, alpha, log = FALSE){
A <- power / alpha
B <- (1 - power) / (1 - alpha)
if (log == FALSE) {
list(
A = A,
B = B
)
} else{
list(
A = log(A),
B = log(B)
)
}
}
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.