gpt4 book ai didi

r - 在 ggplot2 中的图表标题周围放置一个灰色框

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

当我们在 ggplot 中使用 facet 选项时,我们会在标题 (3,4,5) 周围得到一个漂亮的灰色框。

library(ggplot2)

data(mtcars)

ggplot(mtcars, aes(cyl)) + geom_bar() + facet_wrap(~gear) + theme_bw()

当我们不使用 facet 选项时,我们如何在图表标题周围放置一个类似的灰色框?
ggplot(mtcars, aes(cyl)) + geom_bar() + theme_bw() +
ggtitle("How do you put a grey box around me??")

最佳答案

由于您问的是如何在没有分面的情况下进行操作,因此严格来说这不是一个答案,而只是指出这一点,一种快速而肮脏的方法是“作弊”并毕竟使用分面。例如,

mtcars$title <- "How do you put a grey box around me??"
ggplot(mtcars, aes(cyl)) + geom_bar() + theme_bw() +
facet_grid(. ~ title)

诀窍。

enter image description here

关于r - 在 ggplot2 中的图表标题周围放置一个灰色框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37156667/

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