Skip to content

Commit

Permalink
DOC: fix ES01 for pandas.DataFrame.select_dtypes
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhinsharma121 committed Feb 5, 2025
1 parent 898bb02 commit 2504627
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4793,6 +4793,10 @@ def select_dtypes(self, include=None, exclude=None) -> DataFrame:
"""
Return a subset of the DataFrame's columns based on the column dtypes.
This method allows for filtering columns based on their data types.
It is useful when working with heterogeneous DataFrames where operations
need to be performed on a specific subset of data types.
Parameters
----------
include, exclude : scalar or list-like
Expand Down

0 comments on commit 2504627

Please sign in to comment.