seaborn barplot remove error bars
sns.barplot(data=df, x='X', y='Y', ci=None)
Here is what the above code is Doing:
1. We’re creating a dataframe with two columns, X and Y.
2. We’re creating a barplot with the dataframe, and specifying the x and y columns.
3. We’re setting the confidence interval to None.