show,SPRT-method | R Documentation |
Method for signature "SPRT"
to show results or test specification.
## S4 method for signature 'SPRT'
show(object)
object |
Created as a result of a call to |
A summary of test results or specification (if data = NA or omitted).
test00 <- sprt(mu0 = 2,
mu1 = 4,
density_func = "negative binomial",
overdispersion = 4.6,
alpha = 0.1,
beta = 0.1)
show(test00) # returns test specification.
counts <- c(2, 5, 6, 2, 7)
test11 <- sprt(data = counts,
mu0 = 2,
mu1 = 4,
density_func = "negative binomial",
overdispersion = 4.6,
alpha = 0.1,
beta = 0.1)
show(test11) # returns "accept H1" after 5 sampling bouts processed.
## End (Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.