Displaying 1 result from an estimated 1 matches for "alln".
Did you mean:
all
2004 Oct 14
2
Problem with R version 2.0.0 (and patched)
What I am doing : create a simple correlation matrix on 41 variables, then
plot an heatmap with this program :
library(gplots)
mat<-cor(temp.alln,use="pairwise.complete.obs")
hm<-heatmap.2(mat,symm=T)
HM<-format(round(mat[hm[[1]],hm[[2]]],2))
library(RColorBrewer)
brewer.pal(10,"Spectral")->mp
heatmap.2(mat, symm = TRUE, col = mp,
trace='none',breaks=seq(-1,1,.2),rowsep=5,
celln...