Open
Description
There is certain redundancy in pandas plotting, for example Series.hist()
and Series.plot.hist()
.
In pandas-dev/pandas#28177 there is a proposal to make the API more consistent, and among other things to remove Series.hist()
in favor of Series.plot.hist()
.
But as pointed out in the next tickets, they are not exactly the same:
pandas-dev/pandas#9274
pandas-dev/pandas#15079
Not sure if there are other differences, but before we can clean up the plotting API we should fix the by
parameter in the plotting functions (hist
and box
). The by
in already working in DataFrame.hist
and DataFrame.boxplot
for the comments in the issues. So, we just should copy what's in there to the needed DataFrame.plot.
methods.