gpt4 book ai didi

r - 使用 ggplot2 在绘图底部绘制标题

转载 作者:行者123 更新时间:2023-12-04 01:54:05 26 4
gpt4 key购买 nike

在ggplot2中,如何将图标题放在图的底部。

qplot(rnorm(100)) + ggtitle("My Title")

将标题放在情节的中间和顶部,而我希望它在中间和 底部的情节。

最佳答案

这是使用 grid.text 的解决方案:

library("grid")
qplot(rnorm(100)) + theme(plot.margin=unit(c(0.5, 1, 2, 0.5), "lines"))
grid.text("My Title", x = unit(0.5, "npc"), y = unit(0, "npc"),
vjust = -0.5, gp = gpar(cex=1.2))

plot

关于r - 使用 ggplot2 在绘图底部绘制标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30026887/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com