我一直试图让我的12 R图在底行上相互粘贴(0边距)
layout(matrix(c(rep(1,10),2:11),nrow=2,byrow=T),width=c(1,2,1,1,1,1,1,1,1,1,1)
plot(1:10, xaxt='n',yaxt='n', ann=FALSE, mar=c(0,0,0,0))
plot(1:10, xaxt='n',yaxt='n', ann=FALSE, mar=c(0,0,0,0))
.
.
.
据我所知,对于mar = c(0,0,0,0),所有边距都应为零。但正如你所看到的那样,地块之间有很大的空间。
答案 0 :(得分:3)
在par()
之后的layout()
内,plot()
内的layout(matrix(c(rep(1,10),2:11),nrow=2,byrow=T),width=c(1,2,1,1,1,1,1,1,1,1,1))
par(mar=c(0,0,0,0))
plot(1:10, xaxt='n',yaxt='n', ann=FALSE)
......
函数内应设置边距。
{{1}}