
Last chance! 50% off unlimited learning
Sale ends in
Function which returns a list containing lower confidence limits (vector `lowerLimits') and upper confidence limits (vector `upperLimits').
confidenceLimits(obj)
object of type `mmctestres' or `mmctest'.
works with object of type mmctestres or mmctest.
# NOT RUN {
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));
res <- confidenceLimits(a);
lower <- res$lowerLimits;
upper <- res$upperLimits;
# }
Run the code above in your browser using DataLab