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")
各位大哥大神们!怎么改变柱子的宽度,有哪些代码能让图片变得好看一点。