Nothing
each.Fisher.ignore.test <-
function (p)
{
loc <- setdiff(1:length(p), which(is.na(p)))
if (length(loc) >= 1) {
p <- p[loc]
Xsq <- -2 * sum(log(p))
pval <- 1 - pchisq(Xsq, df = 2 * length(p))
return(pval)
}
else {
return(NA)
}
}
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.