R/getnorm.R

Defines functions getnorm

Documented in getnorm

getnorm <- function(x, y, type="pooled"){
 type <- match.arg(type, c("pooled","naive"))
 if(type=="pooled"){getnorm.pool(x,y)}else{
      getnorm.naive(x,y)
  }
}

Try the TULIP package in your browser

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

TULIP documentation built on Jan. 13, 2021, 3:14 p.m.