Skip to content

Commit d2fc7a8

Browse files
committed
Re-hardcoding matplotlib for boxplots
1 parent 06236b9 commit d2fc7a8

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
@@ -367,7 +367,7 @@ def boxplot(
367367
>>> type(boxplot)
368368
<class 'numpy.ndarray'>
369369
"""
370-
plot_backend = _get_plot_backend(kwds.pop("backend", None))
370+
plot_backend = _get_plot_backend("matplotlib")
371371
return plot_backend.boxplot(
372372
data,
373373
column=column,

0 commit comments

Comments
 (0)