I have a data set that looks like this
well time mm sem
x basal 83.96792 8.068338
x stimulus1 153.17250 8.338465
x recovery 60.45712 5.97283
x stimulus2 154.26550 6.533665
and a graph that is made from this code
ggline(df, x = 'time', y = 'mm', color = 'well', palette = c("#00AFBB", "#E7B800")) +
theme_grey()
I want to add SEM bars to each of the four data points with my already calculated SEM number (each of the four points is a sum of a duration so that's how I have an SEM for each point) to make the graph look like this
any idea on how to go about that?

