Nothing
pairwise.rv <- function(data.list, match="col") {
if (match %in% "row")
data.list <- lapply(data.list, t)
ms <- sapply(data.list, function(x) {
x <- c(crossprod(as.matrix(x)))
x <- x/sqrt(sum(x^2))})
m <- crossprod(ms)
colnames(m) <- rownames(m) <- names(data.list)
return(m)
}
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.