I'm trying to make a similiar plot to this here:
but with the categories dodged, so that they are spread out over the x axis and the values of one category are not completely overlapped.
I tried to initialize the value of position_jitterdodge but that only works for the data points (geom_jitter), not for the line plot or errorbar...
df <- ToothGrowth
df$dose <- as.factor(df$dose)
df.summary <- df %>%
group_by(supp,dose) %>%
summarise(
sd = sd(len, na.rm = TRUE),
len = mean(len)
)
ggplot(df, aes(dose, len)) +
geom_jitter(
aes(color = supp),
position = position_jitter(0.2) # position_jitterdodge ?
) +
geom_line(
aes(group = supp, color = supp),
data = df.summary
) +
geom_errorbar(
aes(ymin = len-sd, ymax = len+sd, color = supp),
data = df.summary, width = 0.2
)+
scale_color_manual(values = c("#00AFBB", "#E7B800"))
You can dodge the error bars and line as well