使用ggplot「主題」命令的添加,可以使用R中的Likert包更改圖中的字體大小。但是,當條形圖和直方圖同時繪製在一起時,這些更改不會影響生成的圖形。有沒有辦法修改字體大小,並同時繪製條形圖和直方圖?例如,下面的代碼將成功地修改軸文本:李克特包R
likert.bar.plot(items, legend.position = "none") +
theme(text = element_text(size = rel(6), colour = "red"),
axis.text.y = element_text(colour = "blue",
family = "Courier"))`
...但下面的代碼不會:
plot(items, include.histogram=T, legend.position = "none") +
theme(text = element_text(size = rel(6), colour = "red"),
axis.text.y = element_text(colour = "blue",
family = "Courier"))`
這個問題解釋的 How do I change the text font, size and colour of all the different texts in the R package, Likert?
您可以使用'gridExtra'包進行佈局,這會讓事情變得更簡單:'library(gridExtra); grid.arrange(A,B,寬度= C(2,1))'。 – eipi10