From 1ee460ea13501621f6734345243982b751a8e500 Mon Sep 17 00:00:00 2001 From: knuu Date: Wed, 20 Feb 2019 23:13:56 +0900 Subject: [PATCH] fix typo of see also in DataFrame stat funcs --- 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.