Nothing
covParBloc = function(yCen, model){
covY = cov(yCen)
Dim = dim(covY)[1]
covEmpB = matrix(0,nrow = Dim,ncol = Dim)
for (b in 1:max(model)){
ind = which(model == b)
covEmpB[ind,ind] = covY[ind,ind]
}
return(covEst = covEmpB )
}
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.