How to plot a grouped bar chart with errors bar as shown in the figure?
问题 I am trying to plot a grouped bar chart like the one in the figure below. I found the errorbar() function, but so far I cannot figure it out how to make it. Here is my code. Y = [0.9322225 0.86225 0.8973; 0.8953635 0.862868 0.8099605; 0.7473585 0.675698 0.80484]; bar(Y, 'grouped') bar(Y, 'BarWidth', 0.5); set(gca,'XTickLabel',{'', 'ML', '', 'HSV', '', 'NCC'}); Credit: This figure is from the work of Sanin et al. "Shadow Detection: A Survey and Comparative Evaluation of Recent Methods." 回答1: !