0

我制作了胰岛素浓度的 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) 

我的问题是:

  1. 如何将误差线添加到平均值点?
  2. 我怎样才能避免情节显示任何传说?
4

1 回答 1

1

ggplot2食谱为此类最基本的问题提供了答案。

要添加误差线,请分别计算误差线的上限值和下限值。然后使用geom_errorbar().

http://www.cookbook-r.com/Graphs/Plotting_means_and_error_bars_(ggplot2)/

要删除所有图例,请使用

theme(legend.position="none")

为了获得更多控制,还有许多其他选项。

http://www.cookbook-r.com/Graphs/Legends_(ggplot2)/

于 2016-06-01T14:41:08.570 回答