gpt4 book ai didi

r - 使图表在不同区域的背景颜色不同

转载 作者:行者123 更新时间:2023-12-03 07:40:22 26 4
gpt4 key购买 nike

我正在使用 ggplot2 包在 R 中制作一个简单的条形图。我不想使用默认的灰色,而是想将背景分为五个区域,每个区域都有不同的(但同样低调的)颜色。我该怎么做?

更具体地说,我希望五个颜色区域的范围为 0-25、25-45、45-65、65-85 和 85-100,其中颜色代表比青铜色、青铜色、银色更差的颜色,分别是黄金和铂金。也非常欢迎对配色方案的建议。

最佳答案

这是一个帮助您入门的示例:

#Fake data
dat <- data.frame(x = 1:100, y = cumsum(rnorm(100)))
#Breaks for background rectangles
rects <- data.frame(xstart = seq(0,80,20), xend = seq(20,100,20), col = letters[1:5])


#As Baptiste points out, the order of the geom's matters, so putting your data as last will
#make sure that it is plotted "on top" of the background rectangles. Updated code, but
#did not update the JPEG...I think you'll get the point.

ggplot() +
geom_rect(data = rects, aes(xmin = xstart, xmax = xend, ymin = -Inf, ymax = Inf, fill = col), alpha = 0.4) +
geom_line(data = dat, aes(x,y))

enter image description here

关于r - 使图表在不同区域的背景颜色不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9968975/

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