Skip to content
Prev 247068 / 398503 Next

Alphabetic labels on multi-plot graphics

On Jan 11, 2011, at 2:06 PM, Eduardo de Oliveira Horta wrote:

            
opar <- par(mfrow=c(2,2), ann=FALSE)
  for (t in 1:4){
   plot(seq(from=1,to=2*pi,length=100),
  sin(t*seq(from=1,to=2*pi,length=100)), type="l")
   title(main=bquote("("*.(letters[t])*")") )
  }
par(opar)
(You obviously need something from which to construct the titles.)
David Winsemius, MD
West Hartford, CT