Nothing
# Convert Sigma vector to correlation matrix
sigma2corr <- function(sigma_vec)
{
k = sqrt(length(sigma_vec)) + 1
sigma_mat = matrix(sigma_vec, ncol = k - 1)
corr_mat = cov2cor(sigma_mat)
return(as.vector(corr_mat))
}
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.