Skip to content

Commit 42a188e

Browse files
BUG: add comment that addresses the issue
1 parent 4f5e097 commit 42a188e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pandas/tools/plotting.py

+3
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ def _mpl_ge_2_0_0():
149149
except ImportError:
150150
return False
151151

152+
152153
if _mpl_ge_1_5_0():
153154
# Compat with mp 1.5, which uses cycler.
154155
import cycler
@@ -359,6 +360,8 @@ def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False,
359360
density_kwds = density_kwds or {}
360361

361362
# workaround because `c='b'` is hardcoded in matplotlibs scatter method
363+
# only set default for `c` if `color` kwarg not supplied
364+
# GH 14855
362365
if 'color' in kwds:
363366
pass
364367
else:

0 commit comments

Comments
 (0)