【问题标题】:Excluding elements in ggplot2 legend排除 ggplot2 图例中的元素
【发布时间】:2020-02-27 16:46:35
【问题描述】:

我正在使用以下数据制作 ggplot 条形图。这是我用于 geom_segment 的数据:

dispensed.date.start    dispensed.date.end    drug_class         case
2016-11-28              2016-12-07            opioid             12345
2016-12-08              2016-12-15            benzodiazepene     12345
2016-12-18              2016-12-26            MAT                12345
2016-12-24              2016-12-31            opioid             12345

geom_vline 的数据:

Case                    Event                  DOD
123456                  death                  2018-01-02

剧情如下:

#set levels, colors
status_levels <- c("Benzodiazepene", "MAT", "Nerve pain / Anticonvulsant", "Opioid", "Sedative", "Stimulant", "Death")
status_colors <- c("#984ea3", "#a65628", "#4daf4a", "#e41a1c", "#ff7f00", "#377eb8", '#000000')

#Plot bars
timeline_plot<-ggplot(PDMP.data.clean,aes(x=dispensed.date.start, y=.2),show.legend = FALSE) +
geom_segment(aes(x=dispensed.date.start, xend=dispensed.date.end, y=drug_class, yend=drug_class,col=drug_class), size=5,show.legend = FALSE) +
  # Plot vertical line for date of death
  geom_vline(data = deathDate, mapping = aes(x = DOD, xintercept = DOD, y = 0),size=.5, show.legend = TRUE)
timeline_plot<-timeline_plot+labs(col="Drugs Prescribed", show.legend = FALSE)
timeline_plot<-timeline_plot+scale_color_manual(values=status_colors, labels=status_levels, drop = FALSE)
timeline_plot<-timeline_plot+theme_classic()+ scale_x_date(date_breaks = "1 month",date_labels = "%b")

# Don't show axes, appropriately position legend
timeline_plot<-timeline_plot+theme(
                                   legend.position = "none"
)

# configure legend
timeline_plot<-timeline_plot+theme(
                                   axis.title.x=element_blank(),
                                   axis.title.y=element_blank(),
                                   legend.position = "bottom"
)
                                  
print(timeline_plot+ ggtitle(paste("Prescription History for Case # ",PDMP.data.clean$case))+
        theme(plot.title = element_text(hjust = 0.5),aspect.ratio = 1/3.2,))

这是结果图:

我只想在图例中显示标记为“死亡”的垂直线,相反,它会在每个 drug_class 类别旁边显示垂直线。我不确定为什么这会显示在图例中,因为我虽然我明确排除了这行代码:

timeline_plot<-ggplot(PDMP.data.clean,aes(x=dispensed.date.start, y=.2),show.legend = FALSE) +
geom_segment(aes(x=dispensed.date.start, xend=dispensed.date.end, y=drug_class, yend=drug_class,col=drug_class), size=5,show.legend = FALSE)

【问题讨论】:

    标签: r ggplot2


    【解决方案1】:

    可能的解决方案是在geom_vline 语句中设置线型,然后手动定义图例。
    请参阅对“geom_vline”行的修改和添加的“scale_linetype("Legend", labels="Death")" 行

    timeline_plot<-ggplot(PDMP.data.clean, aes(x=dispensed.date.start, y=.2)) +
      geom_segment( aes(x=dispensed.date.start, xend=dispensed.date.end, y=drug_class, yend=drug_class, col=drug_class), size=5, show.legend = FALSE) +
      # Plot vertical line for date of death
      geom_vline(data = deathDate, mapping = aes(x=DOD, xintercept = DOD, linetype = "2"), size=.5) +
      scale_linetype("Legend",  labels="Death")
    
    ## If color legend is not plotted the following line isn't needed
    # timeline_plot<-timeline_plot+labs(col="Drugs Prescribed")
    timeline_plot<-timeline_plot+scale_color_manual(values=status_colors, labels=status_levels, drop = FALSE)
    timeline_plot<-timeline_plot+theme_classic()+ scale_x_date(date_breaks = "1 month",date_labels = "%b")
    
    # Don't show axes, appropriately position legend
    # timeline_plot<-timeline_plot+theme(legend.position = "none") #not needed
    
    # configure legend
    timeline_plot<-timeline_plot+theme(
      axis.title.x=element_blank(),
      axis.title.y=element_blank(),
      legend.position = "bottom")
    
    print(timeline_plot+ 
           ggtitle(paste("Prescription History for Case # ", PDMP.data.clean$case)) +
           theme(plot.title = element_text(hjust = 0.5), aspect.ratio = 1/3.2,))
    

    【讨论】:

    • Dave2e - 谢谢 - 为什么要设置 legend.position = "none",然后再设置为 "bottom"?这让我很困惑。
    • @DiamondJoe12,我刚刚从上面复制了您的代码。此行不需要,可以删除。
    猜你喜欢
    • 1970-01-01
    • 2018-07-17
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-07-27
    • 1970-01-01
    • 2021-12-01
    • 1970-01-01
    相关资源
    最近更新 更多