我有一個多重繪圖,我想將其打印在A4 PDF頁面上,以便圖表填充整個頁面。當我使用下面的代碼時,我在圖表的上下方得到了很多空白區域。我怎樣才能將這個空白空間縮小到1釐米並增加圖表高度?感謝您的幫助。R:繪圖:在一張A4 pdf頁面上正確地擬合多個繪圖
group <- "Title"
layout(matrix(c(1:12), 6, 2))
par(mar = c(0, 4.1, 1.5, 2.1),oma = c(2, 0, 2, 0))
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
mtext(group, outer = TRUE, cex = 1.5)
mtext("text", outer = TRUE,side =1)
dev.print(pdf, file="charts12.pdf" ,onefile=T,paper='A4')
謝謝你指出。只有用過我的方法才能聽到它的簡單指定'height'和'width' – amwill04