Nothing
arv <- function(y, x) {
px <- dim(x)[2] ; py <- dim(y)[2]
s <- Rfast::cova( cbind(x, y) )
sxy <- s[1:px, -(1:px)]
up <- sum( sxy^2 )
lx <- eigen(s[1:px, 1:px], symmetric = TRUE, only.values = TRUE)$values
ly <- eigen(s[-(1:px), -(1:px)], symmetric = TRUE, only.values = TRUE)$values
p <- min(px, py)
up / sum( lx[1:p] * ly[1:p] )
}
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.