R/ftest.R

"ftest" <-
function(x,y, test = c("wilcox.test", "t.test")) {
  test <- match.arg(test)
  switch(test,
         wilcox.test = wilcox.test(x,y,exact=FALSE),
         t.test = t.test(x,y,exact=FALSE))
}

Try the fgac package in your browser

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

fgac documentation built on May 2, 2019, 6:07 a.m.