Nothing
Locus_preprocess <-function(Ynew,q)
{
N = dim(Ynew)[1]
eigenA = eigen( Ynew %*% t(Ynew), T )
whitenmat = diag( (eigenA$values[1:q] - mean(eigenA$values[(q+1):N]))^(-0.5) ) %*% t(eigenA$vectors[,1:q])
Ynew = whitenmat%*%Ynew # the whitened A matrix
Ynew = Ynew/sd(Ynew)*5
return(Ynew)
}
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.