I drew a custom error bar for my seaborn barplot because I need to use within-subject error bar. I used:
plt.errorbar([0, 1], [mean1, mean2], yerr = errBar_value,
elinewidth = 3, ecolor = "k", capsize = 0.5)
Here is the result
How to increase the capsize? I tried different values of capsize but nothing is changed.
Many thanks
Jiajun