From edccb1e9c7c742e0a14f1f79d1c8a247d3e2f6d7 Mon Sep 17 00:00:00 2001 From: Zhang Wei Date: Tue, 21 Sep 2021 16:37:35 +0800 Subject: [PATCH] DOC: fixed typo of the absolute beginners doc. The result in the example should be [2, 5, 6] instead of [2, 4, 6]. --- doc/source/user/absolute_beginners.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user/absolute_beginners.rst b/doc/source/user/absolute_beginners.rst index bb570f6226d4..4c25aed3a15c 100644 --- a/doc/source/user/absolute_beginners.rst +++ b/doc/source/user/absolute_beginners.rst @@ -904,7 +904,7 @@ columns or rows using the ``axis`` parameter:: >>> data.max(axis=0) array([5, 6]) >>> data.max(axis=1) - array([2, 4, 6]) + array([2, 5, 6]) .. image:: images/np_matrix_aggregation_row.png