How do I remove the column name (R) as ylabel from the plot below:
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
