Each bar has large width
How can I reduce the width of bars, as shown by the drawn red rectangles?
I have the following code in Google Colab.
model_names = ['RFC', 'KNN', 'D-tree', 'SVM RBF']
accuracies = [0.999, 0.970, 0.997, 0.985]
plt.figure(figsize=(6, 2))
ax = sns.barplot(x=model_names, y=accuracies)
plt.xlabel('Model')
plt.ylabel('Accuracy')
plt.title('Model Accuracies Comparison ')
for i, accuracy in enumerate(accuracies):
ax.annotate('{:.3f}'.format(accuracy), xy=(i, accuracy), xycoords='data', ha='center', va='bottom', fontsize=10)
plt.show()
seaborn v0.12.0
introduced thewidth
parameter tosns.barplot
.seaborn 0.12.2
andmatplotlib 3.7.1
.sns.catplot(data=df, kind='bar', ..., width=0.5)
sns.catplot(data=df, kind='count', ..., width=0.5)
sns.countplot(data=df, ..., width=0.5)
.bar_label
.python 3.11.3
,matplotlib 3.7.1
,seaborn 0.12.2