10000 API: Restore implicit converter registration by TomAugspurger · Pull Request #18307 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

API: Restore implicit converter registration #18307

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 26 commits into from
Dec 7, 2017
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Handle no matplotlib
  • Loading branch information
TomAugspurger committed Nov 16, 2017
commit 5be9793dbdfe8c77d394b263f494061b8f25d0cd
5 changes: 4 additions & 1 deletion pandas/plotting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@
from pandas.plotting._core import boxplot
from pandas.plotting._style import plot_params
from pandas.plotting._tools import table
from pandas.plotting import _converter as converter
try:
from pandas.plotting import _converter as converter
except ImportError:
pass
0