Nothing
#[export]
mvkurtosis <- function(x) {
n <- dim(x)[1]
m <- Rfast::colmeans(x)
s <- (crossprod(x) - n * tcrossprod(m))/(n - 1)
sum( Rfast::mahala(x, m, s)^2 ) / 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.