I'd like to build on this example of conditioning line color on slope to add a line for the mean (line from mean t=1 to mean t=2).
library(dplyr)
set.seed(205)
dat = data.frame(t=rep(1:2, each=10), 
                 pairs=rep(1:10,2), 
                 value=rnorm(20))
ggplot(dat %>% group_by(pairs) %>%
         mutate(slope = (value[t==2] - value[t==1])/(2-1)),
       aes(t, value, group=pairs, colour=slope > 0)) +
  geom_point() +
  geom_line()
I tried adding stat_summary(fun.y=mean, geom="line") without any luck.
Computation failed in
stat_summary(): 'what' must be a function or character string