From fc1b4c5a8e9580c9ccd209f2e2679ffe75e7a1c2 Mon Sep 17 00:00:00 2001 From: VincentLa Date: Wed, 24 May 2017 16:34:22 -0700 Subject: [PATCH] Adding print statement to help debugging. Will remove later --- pandas/plotting/_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/plotting/_core.py b/pandas/plotting/_core.py index 9169eb86895fb..bec70ae9e149a 100644 --- a/pandas/plotting/_core.py +++ b/pandas/plotting/_core.py @@ -809,6 +809,7 @@ def _make_plot(self): ax = self.axes[0] c_is_column = is_hashable(c) and c in self.data.columns + print('c') # plot a colorbar only if a colormap is provided or necessary cb = self.kwds.pop('colorbar', self.colormap or c_is_column)