我希望根据给定的变量隐藏ggplot2 facets中的元素。 我的第一个想法是将这些元素切换为透明,但它们并没有从图中完全消失(见下图)。
对于小于1的标签值,我不想绘制片段和文本。
library(tidyverse)
library(ggplot2)
carData <- mtcars
# get the max for each gear facet
df2 <- carData %>% group_by(gear) %>%
summarise(ypos = max(mpg)*1.1) %>%
mutate(x = 1, xend = 2) # use your factor level locators
df2$trans <- c(0,0,1)
df2$label <- c(0.1,0.1,3)
carData$cyl <- factor(carData$cyl)
p <- ggplot(carData, aes(cyl, mpg)) +
geom_boxplot() +
geom_segment(data = df2, aes(y = ypos, yend = ypos, x = x, xend = xend,alpha=trans)) +
geom_text(data = df2, aes(y = ypos*1.02, x = mean(c(x, xend)),label=label,alpha=trans))+
facet_wrap( ~ gear,ncol=2, scales="free")
p
答案 0 :(得分:3)
答案 1 :(得分:1)
以下是另一种解决方案:
p <- ggplot(carData, aes(cyl, mpg)) +
geom_boxplot() +
geom_segment(data = subset(df2,label > 1), aes(y = ypos, yend = ypos, x = x, xend = xend,alpha=trans)) +
geom_text(data = subset(df2,label > 1), aes(y = ypos*1.02, x = mean(c(x, xend)),label=label,alpha=trans))+
facet_wrap( ~ gear,ncol=2, scales="free")
p
您只需要直接对geom_segment
和geom_text
中的数据进行子集化,例如:
+ geom_segment(data = subset(df2,label > 1)...