From 6c4cb6f08a83b20a82e0ea8cc0f2474b0fab4350 Mon Sep 17 00:00:00 2001 From: knuu Date: Thu, 21 Feb 2019 00:50:58 +0900 Subject: [PATCH] fix typo of see also in DataFrame stat funcs (#25388) --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 6e79c02d7dbdd..3647565123523 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -10866,7 +10866,7 @@ def _doc_parms(cls): Series.max : Return the maximum. Series.idxmin : Return the index of the minimum. Series.idxmax : Return the index of the maximum. -DataFrame.min : Return the sum over the requested axis. +DataFrame.sum : Return the sum over the requested axis. DataFrame.min : Return the minimum over the requested axis. DataFrame.max : Return the maximum over the requested axis. DataFrame.idxmin : Return the index of the minimum over the requested axis.