Learn R Programming

simctest (version 2.5)

testResult-methods: Methods for class `mmctestres' and `mmctest', Package `simctest'

Description

Function which returns a list containing indices of rejected hypotheses (vector `rejected'), nonrejected hypotheses (vector `nonrejected') and undecided hypotheses (vector `undecided')

Usage

testResult(obj)

Arguments

obj

object of type `mmctestres' or `mmctest'.

Methods

testResult(obj)

works with object of type mmctestres or mmctest.

Examples

Run this code
# 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 <- testResult(a);
  rejected <- res$rejected;
  nonrejected <- res$nonrejected;
  undecided <- res$undecided;
# }

Run the code above in your browser using DataLab