Skip to content

Commit 1f106e0

Browse files
DOC: fix ES01 for pandas.DataFrame.select_dtypes (#60855)
1 parent 898bb02 commit 1f106e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/core/frame.py

+4
Original file line numberDiff line numberDiff line change
@@ -4793,6 +4793,10 @@ def select_dtypes(self, include=None, exclude=None) -> DataFrame:
47934793
"""
47944794
Return a subset of the DataFrame's columns based on the column dtypes.
47954795
4796+
This method allows for filtering columns based on their data types.
4797+
It is useful when working with heterogeneous DataFrames where operations
4798+
need to be performed on a specific subset of data types.
4799+
47964800
Parameters
47974801
----------
47984802
include, exclude : scalar or list-like

0 commit comments

Comments
 (0)