R/adaptive.chi.square.default.R

Defines functions adaptive.chi.square.default

Documented in adaptive.chi.square.default

#' @export
adaptive.chi.square.default <-
  function(x,B,S,alpha=0.05,prop=0.5,bit=FALSE){
    
    check(test=1,x=x,B=B,alpha=alpha,prop=prop,S=S,bit=bit)
    suppressWarnings({
      res.tbl=adaptive.chi.square.main(x=x,B=B,S=S,alpha=alpha,prop=prop,bit=bit)
    })
    res.tbl$call = match.call()
    class(res.tbl) = c("adaptive.chi.square","CryptRndTest")                                          
    res.tbl
      
  }

Try the CryptRndTest package in your browser

Any scripts or data that you put into this service are public.

CryptRndTest documentation built on April 22, 2022, 9:07 a.m.