From 4b443f9db40597e6d5ddbcb3dfb8079803a4a325 Mon Sep 17 00:00:00 2001 From: Benjamin Thyreau Date: Thu, 2 Oct 2014 10:46:00 +0900 Subject: [PATCH] DOC: mention 'category' in select_dtypes docstring --- pandas/core/frame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 223cb4fe78e94..bc81ca2a2d2ad 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1903,6 +1903,7 @@ def select_dtypes(self, include=None, exclude=None): this will return *all* object dtype columns * See the `numpy dtype hierarchy `__ + * To select Pandas categorical dtypes, use 'category' Examples --------