我希望能够将我的ggplot的ggtitle的背景更改为forestgreen,同时保持文本为白色。颜色不应该应用于整个图形,而只应用于标题。这就是我到目前为止所做的:
p <- ggplot(...)
p <- p + ggtitle("Market Updates") + labs(x = "Date", y = "High")
p <- p + theme(plot.title = element.text(hjust = 0.5, size = 20,
color = "#FFFFFF"))
我想让它看起来像这样:
答案 0 :(得分:5)
从评论中更新。
有几种方法可以做到这一点;正如Axeman建议的那样,使用facet_
在图上方创建条带(更改条带的格式比标题条更容易),或者您可以手动创建标题条,然后将其粘贴到曲线图。
实施例
library(ggplot2)
library(gridExtra)
library(grid)
# Create dummy variable to facet on: this name will appear in the strip
mtcars$tempvar <- "Market Updates"
# Basic plot
# Manually added legend to match your expected result
p <- ggplot(mtcars, aes(mpg, wt)) +
geom_line(aes(colour="Com")) +
scale_colour_manual(name="", values=c(Com = "#228b22") ) +
labs(x = "Date", y = "High")
使用facet_
:这只会在绘图面板上添加颜色条,但标题是居中的。
p + facet_grid(. ~ tempvar) +
theme(strip.background = element_rect(fill="#228b22"),
strip.text = element_text(size=15, colour="white"))
哪个产生
使用grid
函数:这会在绘图面板上添加颜色条,但标题以图形窗口为中心。 (通过将其添加到情节gtable
)
my_g <- grobTree(rectGrob(gp=gpar(fill="#228b22")),
textGrob("Market Updates", x=0.5, hjust=0.5,
gp=gpar(col="white", cex=1.5)))
grid.arrange(my_g, p, heights=c(1,9))
哪个产生