I am using R to plot the heat map of a data in CSV file (10 (Columns) Conditions and 1000 (Rowa))
Following is the Code I am using ..
nba <- read.csv("1317754115.csv", sep=",")
nba_matrix <- data.matrix(nba)
cexRow = 0.2 + 1/log10(1000),
cexCol = 0.2 + 1/log10(10),
nba_heatmap <- heatmap(nba_matrix, Rowv=cexRow, Colv=cexCol,
col = heat.colors(256), scale="column", margins=c(5,10))
Now Rows on right hand sides are very close so I can not read the label names ,
Can some one please tell me how can i show all labels on Y-Axis
Thanks

You can’t change the aspect ratio with the base
heatmapfunction. To get this functionality, seeheatmap.2in thegplotspackage, oraspectHeatmapin theClassDiscoverypackage. Here’s an example: