From 17b2b6915ee436768c2c51f5692b7179751ccbda Mon Sep 17 00:00:00 2001 From: kpapdac Date: Wed, 6 Feb 2019 22:03:17 +0000 Subject: [PATCH] Edit parameter type in pandas.core.frame.py DataFrame.count --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index ade05ab27093e..f443cc1dd5ba4 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -7274,7 +7274,7 @@ def count(self, axis=0, level=None, numeric_only=False): If the axis is a `MultiIndex` (hierarchical), count along a particular `level`, collapsing into a `DataFrame`. A `str` specifies the level name. - numeric_only : boolean, default False + numeric_only : bool, default False Include only `float`, `int` or `boolean` data. Returns