Gundala Viswanath
2009-Apr-17 03:54 UTC
[R] How to control distance between rows of figures in multiple plots
Dear all, I have a plot with 2 x 2 figures matrix in it. pdf("~/Desktop/myplot.pdf",width=13,height=7) par(mfrow=c(2,2)) # follow by some code Now the distance between figures of row 1 and row 2 is too wide. How can I modify? - Gundala Viswanath Jakarta - Indonesia
jim holtman
2009-Apr-17 12:14 UTC
[R] How to control distance between rows of figures in multiple plots
?par look at the 'mar' parameter. On Thu, Apr 16, 2009 at 11:54 PM, Gundala Viswanath <gundalav at gmail.com> wrote:> Dear all, > > I have a plot with 2 x 2 figures matrix in it. > > pdf("~/Desktop/myplot.pdf",width=13,height=7) > par(mfrow=c(2,2)) > # follow by some code > > Now the distance between figures of row 1 and row 2 > is too wide. How can I modify? > > - Gundala Viswanath > Jakarta - Indonesia > > ______________________________________________ > R-help at 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 > and provide commented, minimal, self-contained, reproducible code. >-- Jim Holtman Cincinnati, OH +1 513 646 9390 What is the problem that you are trying to solve?