Skip to content

Commit cec51fd

Browse files
code change based on review
1 parent f1c86af commit cec51fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v0.25.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ including other versions of pandas.
1818

1919
Other Enhancements
2020
^^^^^^^^^^^^^^^^^^
21-
:func:`DataFrame.plot` allows to expose symlog scaling for axis.
21+
:func:`DataFrame.plot` keywords ``logy``, ``logx`` and ``loglog`` can now accept the value ``sym`` for symlog scaling. (:issue:`24867`)
2222

2323

2424
.. _whatsnew_0250.api_breaking:

pandas/plotting/_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ def _setup_subplots(self):
308308

309309
axes = _flatten(axes)
310310

311-
valid_log = [False, True, 'sym', None]
311+
valid_log = (False, True, 'sym', None)
312312

313313
for i in (self.logx, self.logy, self.loglog):
314314
if i not in valid_log:

0 commit comments

Comments
 (0)