Nothing
coRankedMatrices <-
function(matrix1, matrix2){
rownames1 <- rownames(matrix1)
rownames2 <- rownames(matrix2)
matrix1 <- matrix1[sort(rownames1, index.return=TRUE)$ix,]
matrix2 <- matrix2[sort(rownames2, index.return=TRUE)$ix,]
equalNames <- rownames(matrix1) == rownames(matrix2)
indexFalse <- which(equalNames==FALSE)
if(length(indexFalse)>0){
print("WARNING: matrices row names do not have same rank or matrices row names differ. Check the 'return' result for mismatchs index...")
return(indexFalse)
}
return(list(matrix1=matrix1, matrix2=matrix2))
}
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.