gpt4 book ai didi

r - 如何从ggtheme中删除框架

转载 作者:行者123 更新时间:2023-12-02 02:58:43 24 4
gpt4 key购买 nike

我正在使用 ggplot 绘制一些数据。另外,我使用 ggthemes 包中的 gdocs 主题。

library(ggthemes)
data <- data.frame(x = 1:10, y = 1:10)
g <- ggplot(data, aes (x = x, y = y)) + geom_point()
g + theme_gdocs()

gdocs theme

我想使用这个主题,但没有围绕整个图的边框,类似于默认主题。

g

default theme

我应该修改哪些设置才能实现此目的?

这是我第一次在 ggplot 中使用其他主题,所以我可能会错过一些简单的东西,但我无法让它自己工作。预先感谢您的帮助。

最佳答案

发布上面由 hrbrmstr 提供的解决方案:

在调用theme时使用plot.background=element_blank():

library(ggthemes)
data <- data.frame(x = 1:10, y = 1:10)
g <- ggplot(data, aes (x = x, y = y)) + geom_point()
g + theme_gdocs() + theme(plot.background=element_blank())

来自 ggplot2 docs :

Use theme() to modify individual components of a theme, allowing you to control the appearance of all non-data components of the plot. theme() only affects a single plot: see theme_update() if you want modify the active theme, to affect all subsequent plots.

...

plot.background: background of the entire plot (element_rect; inherits from rect)

这适用于使用ggplot2创建的任何绘图,当然,不仅仅是使用theme_gdocs()创建的绘图。

关于r - 如何从ggtheme中删除框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32923618/

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