I have the following plot:
y = [-2.75 -2.91; -0.48 -0.44];
X = categorical({'AWS1','AWS2'});
bar(X,y)
set(gca, 'fontsize', 14);
ylim([-3 1])
box on
grid on
How can I add an uncertainty bar around the blue bars only (-2.75 +/- 0.22 and -0.48 +/- 0.68)?
Thanks!