【发布时间】: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)
【问题讨论】: