I have my plot window divided using
par(mfrow=c(2,4))
I have 7 plots and would like to use the remaining plot space to write the legend (i.e. the blank space in the bottom right hand corner)
I was wondering is there an easy way to put the legend into this position?
pdf("Plot")
par(mfrow=c(2,4), lwd=2, font=2, font.lab=2, font.axis=2, oma=c(0,0,2,0))
for(i in 1:7){
image(imagearray[,,i], axes=F, col=grey(c(0:225)/225), main= paste("Plot",i))
title("Plot", outer=T)
}
dev.off()