Nothing
GetPropAligned <- function(input,reference,L){
colnames(input)=colnames(reference)=seq(1,dim(input)[2],by=1)
corMat = cor(input,reference,use="pairwise.complete.obs")
prop_cor = rep(0,L)
tmpmat=corMat
tmpmat[is.na(tmpmat)] = rnorm(L,-1,0.01)
if(L>2){
for(i in 1:L){
maxind = which(tmpmat == max(tmpmat), arr.ind = TRUE)
prop_cor[maxind[1]] = colnames(corMat)[maxind[2]]
tmpmat[maxind[1],]=tmpmat[,maxind[2]]=rep(-1,L)
}
}else if(L==2){
if(tmpmat[1,1]>0){
prop_cor = c("1","2")
}else{
prop_cor = c("2","1")
}
}
colnames(input) = prop_cor
trans_input = input[,colnames(reference)]
return(trans_input)
}
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.