python(sns.barplot)图片优化

问题遇到的现象和发生背景

img

用代码块功能插入代码,请勿粘贴截图
plt.figure(figsize=(16,15))

ax=sns.barplot(x="New_Time",y="Grand Prix(Winner)",orient="h",data=df_f1.sort_values("New_Time",ascending=True,),hue="Winner")
sns.set_style("darkgrid")
#sns.set(font_scale=4)


plt.ylabel("Grand Prix(winner)",fontsize=20,fontweight='heavy')
plt.xlabel("Minutes", fontsize=20,fontweight='heavy')
plt.title("F1 race winning times from March to December 2021",fontsize=20,fontweight='heavy')
plt.xticks(fontsize=16)
plt.yticks(fontsize=16)


plt.savefig("plot")

我想要达到的结果

各位大哥大神们!怎么改变柱子的宽度,有哪些代码能让图片变得好看一点。