gpt4 book ai didi

r - ggplot2 中用矩形/阴影区域突出显示值

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

大家好,我有以下示例数据:

library(ggplot2)
library(reshape)
library(tidyr)
library(dplyr)


set.seed(78)
vector <- runif(n = 360, min = -4, max = 4)
dates <- seq(as.Date('1980-01-01'), length.out=360, by='1 month')


df <- data.frame(dates = dates, index = vector)

#Aqui ya se hace la diferencia entre positivo y negativo con color
df$colour <- ifelse(df$index < 0, "Negative","Positive")
ggplot(df,aes(dates,index,label=""))+
geom_bar(stat="identity",position="identity",aes(fill = colour))+
scale_fill_manual(name = "Valor", values=c(Positive="firebrick",Negative="dodgerblue4"))+
ggtitle("Index")+
theme(plot.title = element_text(hjust = 0.5))+
xlab("Year") + ylab("S.D.")

我生成了这个图像:

enter image description here

我想做的是用正方形或其他东西突出显示特定的时间间隔,所以它看起来像这样:

enter image description here

正如我所说,不一定是实线,它可以是阴影区域,有人知道我该怎么做吗?

最佳答案

正如 @dww 提到的,geom_rect 有效。添加下面的层:

  geom_rect(
aes(
xmin = as.Date('1993-06-01'),
xmax = as.Date('1994-11-01'),
ymin = min(index),
ymax = 0
),
fill = NA,
color = "black",
size = 2
)

enter image description here

关于r - ggplot2 中用矩形/阴影区域突出显示值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54679680/

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