You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Issue Description
The plot will always show the label "my_series", regardless of if you pass ylabel=None or not.
The only way to fix this is to do:
```python
ax = ser.plot(kind="pie")
ax2.set_ylabel(None)