I've been attempting to get the errorbar caps on the bar tips, but yet invoking capsize
argument doesn't seem to be working. If you could please take a look at my code below. Many thanks in advance.
Figure1 = plt.figure('Bar Graph', figsize=(7.5,7), dpi=300)
Subplot1 = Figure1.add_subplot(1,1,1)
Subplot1.bar([4,5,6,7], [6,5,9,8], yerr=[0.2,0.3,0.1,0.2],
width= 0.8, color='r', edgecolor='r',
capsize=3, ecolor='black'
)