Side note, since Nabble posts to R-help also, you only need to use
Nabble or email, not both.
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
a
Hi,
Without your data, we cannot actually reproduce your plot; however, if
you cannot read labels, there are generally three options.
1) Make the labels smaller (I have not used the function you used, so
I'm not sure exactly how one would)
2) Use fewer labels (if you need them all, this is a part
I generated a heatmap in R using the following commands:
> mydata <- read.csv(file="Data.csv", header=TRUE, sep=",")
> mydata <- mydata[rowSums(mydata[,-1]^2) >0, ]
> rownames(mydata)=mydata$Name
> mydata <- mydata[,2:253]
> mydatamatrix <- data.matrix(mydata)
> mydatascale <- t(scale(t(mydatamatr
3 matches
Mail list logo