两种解决方法,理想的情况下,肯定是你用ggplot2重写他画图的方法,因为他的图无非就是点线面的各种组合。
偷懒的方法及时自己额外加上标题,用mtext试试看,这里标题的位置就看自己调整了。给你个例子看看。
- par(mfrow = c(2, 2))
- plot(iris$Petal.Length, iris$Petal.Width, main = 'A')
- plot(iris$Sepal.Length, iris$Petal.Width, main = 'B')
- plot(iris$Sepal.Width, iris$Petal.Width, main = 'C')
- plot(iris$Sepal.Length, iris$Petal.Width, main = 'D')
- mtext("My 'Title' in a strange place 1", side = 3, line = -2, outer = TRUE)
- mtext("My 'Title' in a strange place 2", side = 3, line = -19, outer = TRUE)
复制代码