I use GridSpec in matplotlib to create a page with 9 subheadings. One of the subheadings is the Sea Bar chart created using the following code:
import seaborn as sns sns.barplot(x=df['Time'], y=df['Volume_Count'], ax=ax7)
Is there a way to turn off vertical bars of bar graph errors? If not, is it possible to reduce the horizontal width of the bars?
Thanks!
source share