Skip to content

ENH: Allow plotting backend to be an option #28622

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Nov 5, 2019
Prev Previous commit
Next Next commit
Re-hardcoding matplotlib for boxplots
  • Loading branch information
jsignell committed Oct 28, 2019
commit d2fc7a81f6b58e9c16014058a791bf75138bd0ee
2 changes: 1 addition & 1 deletion pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def boxplot(
>>> type(boxplot)
<class 'numpy.ndarray'>
"""
plot_backend = _get_plot_backend(kwds.pop("backend", None))
plot_backend = _get_plot_backend("matplotlib")
return plot_backend.boxplot(
data,
column=column,
Expand Down