gpt4 book ai didi

r - 在 x 轴上的日期之间提供阴影

转载 作者:行者123 更新时间:2023-12-04 09:05:31 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Make the background of a graph different colours in different regions

(3 个回答)


3年前关闭。




我在 R 中有一个图,X 轴上有日期/时间 (POSIXct),Y 轴上有一些数据。
我想在 x 轴上每个日期的下午 3 点到下午 6 点之间在 x 轴上提供阴影

最佳答案

或多或少关注什么 Brian Diggs suggests above ,

#sample data
set.seed(666)
dat <- data.frame(x = seq(as.POSIXct('2011-03-27 00:00:00'),
len= (n=24), by="1 hour"), y = cumsum(rnorm(n)))
#Breaks for background rectangles
rects <- data.frame(xstart = as.POSIXct('2011-03-27 15:00:00'),
xend = as.POSIXct('2011-03-27 18:00:00'))

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

会给你这个,
m

关于r - 在 x 轴上的日期之间提供阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10542326/

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