"Sam Baxter" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am trying to set up 16 graphs on one graphics page in R. I have used
> the mfrow=c(4,4) command. However I get a lot of white space between
> each graph. Does anyone know how I can reduce this?
The default par()$mar is c(5,4,4,2) + 0.1 and can be reduced.
For example:
par(mfrow=c(4,4), mar=c(3,3,0,0))
for (i in 1:16)
{
plot(0:10)
}
efg
--
Earl F. Glynn
Bioinformatics Department
Stowers Institute for Medical Research
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html