I\'m plotting bar plots with error bars but I can\'t figure out how to suppress the lower part of the error bar. Does anyone has an idea how I could do that?
This is my
I know that the post is old, but it is now when I front this problem. These options work if you want to add a geom_errorbar to a geom_bar, but if you want to plot a geom_point + geom_bar, an horizontal line will appear over your point.
For solve that problem I have found a 'trap'.
ggplot(data, (aes(x...) + geom_point() +
geom_errorbar(aes(ymin = upper, ymax = upper)) +
geom_linerange(aes(ymin = mean, ymax = upper))
Using this code you will obtain only the upper line, because the lower line is overlapping the upper, and with geom_linerange
you get the vertical line.