Nothing
#[export]
colpois.tests <- function(y, logged = FALSE) {
m <- Rfast::colmeans(y)
n <- dim(y)[1]
y2 <- Rfast::colsums(y^2)
s <- (y2 - n * m^2)/(n - 1)
stat <- ( s/m - 1) * sqrt( 0.5 *(n - 1) )
pval <- 2 * pnorm(abs(stat), lower.tail = FALSE, log.p = logged)
cbind(stat, pval)
}
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.