I am trying to use the R function heatmap.2 (from gplots package). The text labeling the columns is unreadable after saving to png. I have tried using the par command to make the figure larger, cexCol to make the text smaller, and colSep to make the cells on the heatmap farther apart, yielding more room for the text.
Below is a link to a zoomed in screenshot of the bottom of my heatmap. Also, here are my commands:
png(file=paste(path,filename))
heatmap.2(data,na.rm=TRUE,dendrogram='none',key=F,cexCol=.1,trace='none')
par(fin=(c(20,4)),new=TRUE) #I've tried x=10,14 for c(x,4)
dev.off()
heatmap link: http://s24.postimg.org/hr6nyf01h/heatmap_Failed.png
Is there any way to make this text readable after the heatmap command? I'm definitely open for better tools if that is what it takes.
Much Thanks in advance.