Nothing
testStat <- function(sumFns,divByVar=divByVar) {
# Test statistic.
type <- attr(sumFns,"type")
#
if(type == "oneway") {
return(oEngine(sumFns,divByVar=divByVar))
} else if(type == "twoway") {
return(tEngine(sumFns,divByVar=divByVar))
} else if(type=="interac") {
return(iEngine(sumFns,divByVar=divByVar))
} else {
stop(paste0("Value of \"type\" ",type," not recognised.\n"))
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.