Open
Description
In #28647, we discovered that PlotAccessor.__call___
does quite a bit of preprocessing of the data before handing it off to the backend.
pandas/pandas/plotting/_core.py
Lines 728 to 794 in 3992126
Depending on the plot kind and backend, some of this preprocesing may not be appropriate. The backend might want to see the "raw" data. That's not to say we shouldn't do any preprocessing though. We'll need some feedback from backend authors on what should be done before handing it off.