Nothing
next_gBOIN_continuous <- function(target, n, y, d, mu_1 = 0.6 * target, mu_2 = 1.4 * target){
ndose <- length(y)
if (y[d]/n[d] <=(target+mu_1)/2&& d != ndose) {
d = d + 1
}
else if (y[d]/n[d] >= (target+mu_2)/2 && d != 1) {
d = d - 1
}
else {
d = d
}
d
}
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.