Remove standard ylabel from column name in pandas boxplot

Viewed 17

How do I remove the column name (R) as ylabel from the plot below:

enter image description here

fig, ax = plt.subplots(figsize= (20, 7.5))
bp = df_seas_true.boxplot(column= 'R', vert= False, ax= ax, grid= False);
ax.set_ylabel(' ')
ax.set_xlabel('R')

The ax.set_ylabel(' ') does not work...

Regards,

Dante

0 Answers
Related