From 8158393186c71d8529cab487d1542bdfdc01f128 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Thu, 18 Sep 2014 00:08:11 -0400 Subject: [PATCH] BUG/DOC : Correct default value listed in docstring Changed to be True to match the code closes #3455 --- lib/matplotlib/axes/_axes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index 7301c2c93157..32b565218ad0 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -2923,7 +2923,7 @@ def boxplot(self, x, notch=False, sym='b+', vert=True, whis=1.5, The default symbol for flier points. Enter an empty string ('') if you don't want to show fliers. - vert : bool, default = False + vert : bool, default = True If True (default), makes the boxes vertical. If False, makes horizontal boxes.