Nothing
rv <- function(y, x) {
p <- dim(x)[2]
sxy <- Rfast::cova( cbind(x, y) )[1:p, -(1:p)]
sxx <- Rfast::cova(x)
syy <- Rfast::cova(y)
a <- sum( sxy^2 )
b1 <- sum( sxx^2 )
b2 <- sum( syy^2 )
a / sqrt(b1 * b2)
}
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.