如何在ggplot2中绘制透明线条

时间:2017-09-12 08:11:11

标签: r ggplot2 transparency

我希望根据给定的变量隐藏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

enter image description here

2 个答案:

答案 0 :(得分:3)

你快到了。只需要覆盖alpha刻度的默认范围,即c(0.1, 1)

p + scale_alpha(range = c(0, 1))

plot

答案 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_segmentgeom_text中的数据进行子集化,例如:

+ geom_segment(data = subset(df2,label > 1)...