From 4d44a2aff08c3075d9472e361bd7448a0472494e Mon Sep 17 00:00:00 2001 From: kpapdac Date: Tue, 12 Feb 2019 05:51:16 +0000 Subject: [PATCH] Edit parameter type in pandas.core.frame.py DataFrame.count (#25198) --- 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 5c28259e0cb63..85aa13526e77c 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -7236,7 +7236,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