Turn off errorbars in seaborn plots

Have you tried the ci argument? According to the documentation:

ci : float or None, optional
Size of confidence intervals to draw around estimated values. If
None, no bootstrapping will be performed, and error bars will
not be drawn.

sns.barplot(x=df['Time'], y=df['Volume_Count'], ax=ax7, ci=None)

Leave a Comment