Skip to content

Commit 526e360

Browse files
committed
Re-hardcoding matplotlib for boxplots
1 parent c3074e5 commit 526e360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def boxplot(
373373
>>> type(boxplot)
374374
<class 'numpy.ndarray'>
375375
"""
376-
plot_backend = _get_plot_backend(kwds.pop("backend", None))
376+
plot_backend = _get_plot_backend("matplotlib")
377377
return plot_backend.boxplot(
378378
data,
379379
column=column,

0 commit comments

Comments
 (0)