From 0f811b534928db5d78993b7e4105f1230245ef31 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Thu, 19 Mar 2020 22:48:45 +0200 Subject: [PATCH] DOC: Remove `# doctest: +SKIP` --- pandas/core/generic.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 6b0f7de11a3e7..130e2368cd478 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -9649,7 +9649,7 @@ def describe( Describing all columns of a ``DataFrame`` regardless of data type. - >>> df.describe(include='all') # doctest: +SKIP + >>> df.describe(include='all') categorical numeric object count 3 3.0 3 unique 3 NaN 3 @@ -9692,7 +9692,7 @@ def describe( Including only string columns in a ``DataFrame`` description. - >>> df.describe(include=[np.object]) # doctest: +SKIP + >>> df.describe(include=[np.object]) object count 3 unique 3 @@ -9710,7 +9710,7 @@ def describe( Excluding numeric columns from a ``DataFrame`` description. - >>> df.describe(exclude=[np.number]) # doctest: +SKIP + >>> df.describe(exclude=[np.number]) categorical object count 3 3 unique 3 3 @@ -9719,7 +9719,7 @@ def describe( Excluding object columns from a ``DataFrame`` description. - >>> df.describe(exclude=[np.object]) # doctest: +SKIP + >>> df.describe(exclude=[np.object]) categorical numeric count 3 3.0 unique 3 NaN