From 495ee12d233e6770c92317e75a4ead7d3be98b9f Mon Sep 17 00:00:00 2001 From: Mehdi Mohammadi Date: Mon, 9 Jan 2023 17:05:54 -0800 Subject: [PATCH] Fix docstring for layout parameter of boxplot --- pandas/plotting/_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/plotting/_core.py b/pandas/plotting/_core.py index 142a0fe3e1ede..2dc236a033415 100644 --- a/pandas/plotting/_core.py +++ b/pandas/plotting/_core.py @@ -282,7 +282,7 @@ def hist_frame( The size of the figure to create in matplotlib. layout : tuple (rows, columns), optional For example, (3, 5) will display the subplots - using 3 columns and 5 rows, starting from the top-left. + using 3 rows and 5 columns, starting from the top-left. return_type : {'axes', 'dict', 'both'} or None, default 'axes' The kind of object to return. The default is ``axes``.