我的問題是類似於下面的文章中,我唯一需要的是把每一個插曲的標題每一圖片下面,而不是在頂部。從巴蒂斯特工作正常,但,我只有兩個數字,我希望他們並排ggplot的multiplot - 保持標題底部
Place title of multiplot panel with ggplot2
建議。
p = qplot(1,1)
lp = list(p,p)
ll = list("sub 1", "sub 2")
plotlist <- mapply(arrangeGrob, lp, sub=ll, SIMPLIFY=FALSE)
do.call(grid.arrange, plotlist)
感謝
你的意思是爲每個情節一個標題,或網頁一個全球標題? – baptiste
'do.call(grid.arrange,C(plotlist,列表(NcoI位= 2)))' – baptiste
感謝。工作正常。 – learner