为了对不同的群体和整个人口进行基准测试,我试图将人口箱线图的人口箱添加到情节中。当轴是数字时,这很容易通过geom_area
和来实现geom_hline
:
m <- median(mtcars$mpg)
Q1 <- quantile(as.numeric(mtcars$mpg), c(0.25))
Q3 <- quantile(as.numeric(mtcars$mpg), c(0.75))
ggplot(mtcars, aes(x=cyl, y=mpg))+
geom_rect(aes(xmin = -Inf , xmax = Inf , ymin = Q1 , ymax = Q3 ),fill = "blue", alpha = .002)+
geom_hline(yintercept= m,colour = "white", size=1) + scale_x_discrete(breaks=(factor(mtcars$cyl))) + geom_boxplot(aes(group=cyl))+ coord_flip(xlim=c(3,9)) +
geom_point() + theme_classic()
在 x 轴上有一个因素xmax=Inf
并且xmin=-Inf
不起作用(可以预期):
m <- median(esoph$ncases)
Q1 <- quantile(as.numeric(esoph$ncases), c(0.25))
Q3 <- quantile(as.numeric(esoph$ncases), c(0.75))
ggplot(esoph, aes(x=agegp, y=ncases))+
geom_rect(aes(xmin = -Inf , xmax = Inf , ymin = Q1 , ymax = Q3 ),fill = "blue", alpha = .002)+
geom_hline(yintercept= m,colour = "white", size=1) + geom_boxplot(aes(group=agegp))+ coord_flip() + geom_point() +
theme_classic()
这有效,但不是我想要的。我希望该区域覆盖整个地块。与第一个图上的颜色相比,该区域的颜色也不同(可能与 的行为有关alpha
)?
ggplot(esoph, aes(x=agegp, y=ncases))+
geom_rect(aes(xmin = min(agegp) , xmax = max(agegp) , ymin = Q1 , ymax = Q3 ),fill = "blue", alpha = .002)+
geom_hline(yintercept= m,colour = "white", size=1) + geom_boxplot(aes(group=agegp))+ coord_flip() + geom_point() +
theme_classic()
解决方案/建议?