13

我有一些数据用于绘制直方图。我还有两组具有一定意义的阈值。

我能够用适当的样式绘制直方图和 vlines。但是,我无法让我的 vlines 出现在图例中。我相信这样的事情应该可以工作,但是图例项目永远不会显示。

df <- data.frame(val=rnorm(300, 75, 10))

cuts1 <- c(43, 70, 90)
cuts2 <- c(46, 79, 86)

ggplot(data=df, aes(x=val)) +
  geom_histogram() +
  geom_vline(xintercept=cuts1,
             linetype=1,
             color="red",
             labels="Thresholds A",
             show_guide=TRUE) +
  geom_vline(xintercept=cuts2,
             linetype=2,
             color="green",
             labels="Thresholds B",
             show_guide=TRUE)

或者,如果我为我的剪辑构建一个 data.frame 并进行美学映射,我可以让我的 vlines 显示在图例中。不幸的是,图例给了我两个不同线型相互叠加的实例:

cuts1 <- data.frame(Thresholds="Thresholds A", vals=c(43, 70, 90))
cuts2 <- data.frame(Thresholds="Thresholds B", vals=cuts2 <- c(46, 79, 86))

ggplot(data=df, aes(x=val)) +
  geom_histogram() +
  geom_vline(data=cuts1, aes(xintercept=vals, shape=Thresholds),
             linetype=1,
             color="red",
             labels="Thresholds A",
             show_guide=TRUE) +
  geom_vline(data=cuts2, aes(xintercept=vals, shape=Thresholds),
             linetype=2,
             color="green",
             labels="Thresholds B",
             show_guide=TRUE)

在此处输入图像描述

所以,最后,我正在寻找的是手动将两组线添加到绘图中的最直接方法,然后让它们正确显示在图例中。

4

1 回答 1

24

诀窍是将阈值数据全部放在同一个数据框中,然后映射美学,而不是设置它们:

cuts <- rbind(cuts1,cuts2)

ggplot(data=df, aes(x=val)) +
  geom_histogram() +
  geom_vline(data=cuts, 
             aes(xintercept=vals, 
                 linetype=Thresholds,
                 colour = Thresholds),
             show_guide = TRUE)

在此处输入图像描述

于 2012-09-22T17:30:04.540 回答