左側空白有了這個代碼如何刪除heatmap.2輸出
library(gplots)
# Read data
dat <- read.table("http://dpaste.com/1501148/plain/",sep="\t",header=T);
rownames(dat) <- dat$Name
dat <- dat[,!names(dat) %in% c("Name")]
#Set colour
hmcols <- rev(redgreen(2750));
pdf("~/Desktop/tmp.pdf")
# Plot the figure, we don't want KEY in the plot and no dendrograms also.
heatmap.2(as.matrix(dat),Colv=FALSE,dendrogram="none",scale="row",col=hmcols,trace="none", margin=c(5,15), lwid=c(1.5,2.0),key=FALSE);
dev.off()
它輸出如下圖所示:
注意它對留下了太多的空白。 我該如何刪除它? 原則上我想做整個熱圖的左對齊。