Displaying 1 result from an estimated 1 matches for "r49771".
Did you mean:
149771
2009 Oct 12
3
help with the use of mtext to create main title over multiple plots
...###################
setwd("~/Desktop")
pdf("my.test.plots.pdf", paper = "letter")
par(mfrow=c(2,2))
for (i in 1:4){
plot(1:6, 1:6)
}
mtext(text = "my test plots", side = 3, outer = TRUE)
dev.off()
#
R version 2.10.0 Under development (unstable) (2009-09-21 r49771)
x86_64-unknown-linux-gnu
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=C LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT...