我制作了胰岛素浓度的 ggplot。在不同的时间点 (OGTT) 进行两种不同的治疗。之后我添加了显示平均值的点:
p<-ggplot(data=data2, aes(x = factor(OGTT), y = Insulin, group = StudyID, color=StudyID)) +
geom_line() +
facet_grid(End.start ~Treatment)+
stat_summary(aes(group = Treatment), geom = "point", fun.y = mean, shape = 16, size = 2)
我的问题是:
- 如何将误差线添加到平均值点?
- 我怎样才能避免情节显示任何传说?