rejProb-methods | R Documentation |
Function which returns empirical rejection probabilities. Threshold against e.g. 0.5 to obtain rejections (all rejProb>0.5 are rejected). Important: For usage in connection with thompson=TRUE (see the mmctest constructor).
rejProb(obj)
obj |
object of type ‘mmctestres’ or ‘mmctest’. |
works with object of type mmctestres or mmctest.
fun <- function(ind,n,data) sapply(1:length(ind), function(i) sum(runif(n[i])<=data[ind[i]]));
i <- mmctSampler(fun,num=500,data=runif(500));
a <- mmctest(h=hBH);
a <- run(a, i, maxsteps=list(maxnum=1000000,undecided=10));
rejProb(a);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.