Common main title of a figure panel compiled with par(mfrow)
问题 I have a compilation of 4 plots drawn together with par(mfrow=c(2,2)) . I would like to draw a common title for the 2 above plots and a common title for the 2 below panels that are centered between the 2 left and right plots. Is this possible? 回答1: This should work, but you'll need to play around with the line argument to get it just right: par(mfrow = c(2, 2)) plot(iris$Petal.Length, iris$Petal.Width) plot(iris$Sepal.Length, iris$Petal.Width) plot(iris$Sepal.Width, iris$Petal.Width) plot