I created the boxplot in the picture in seaborn with the code below. I want to reduce the axis pointer thicknesses as in the example I circled in red without changing the axis label size. How do I provide this?
import matplotlib.pyplot as plt
import seaborn as sns
fig, axes = plt.subplots(1, 5)
ax1=sns.boxplot(x='YONTEM', y='Özgüllük', orient='v', ax=axes[0],data=df1, showfliers=False, linewidth=0.5)
ax2= sns.boxplot(x='YONTEM', y='Özgüllük', orient='v', ax=axes[1],data=df2, showfliers=False, linewidth=0.5)
ax3=sns.boxplot(x='YONTEM', y='Özgüllük', orient='v', ax=axes[2],data=df3, showfliers=False, linewidth=0.5)