Nothing
next_Ivanova_continuous <- function(target, eps, c_resp, n, d){
y <- sapply(c_resp, sum)
le <- length(n)
qhat=y[d]/n[d]
tstat=(qhat-target)/sd(c_resp[[d]])*sqrt(n[d])
if (n[d]==1) d1=d
if (n[d] >1) { d1=d
if (tstat< (-eps)) d1=d+1
if (tstat> (eps)) d1=d-1
}
d=d1
d=max(d,1)
d=min(d,le)
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.