-
-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Closed
Labels
Milestone
Description
Pandas uses the matplotlib boxplot, but it does not support passing down the argument 'notch=1' to the actual matplotlib boxplot call.
df.boxplot(notch=1) gives a traceback
Although according to documentation there should be some kind of kwds mechanism, there is none in fact.
Docstring:
boxplot(self, column=None, by=None, ax=None, fontsize=None, rot=0, grid=True, **kwds) method of pandas.core.frame.DataFrame instance