[R] saving heatmaps in graphical format that can be edited in graphic editor tools

2010-09-08 Thread Bhakti Dwivedi
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(mydatamatrix))) hr -

Re: [R] saving heatmaps in graphical format that can be edited in graphic editor tools

2010-09-08 Thread Joshua Wiley
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

Re: [R] saving heatmaps in graphical format that can be edited in graphic editor tools

2010-09-08 Thread Joshua Wiley
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