Selectors#
Contains method to select columns in a dataframe. See the selectors section for further details.
Pattern for matching columns in a dataframe. |
|
Select all columns in a dataframe. |
|
Select columns that have a Date or Datetime data type. |
|
Select columns that have a Boolean data type. |
|
Select columns whose cardinality (number of unique values) is (strictly) below |
|
Select columns that have a Categorical (or polars Enum) data type. |
|
Select columns by name. |
|
Select the columns of a dataframe that are NOT matched by the selector. |
|
Select columns for which a custom predicate function returns |
|
Select columns based only on their name. |
|
Select columns that have a floating-point data type (float32, float64, etc.) |
|
Select columns by name with Unix shell style 'glob' pattern. |
|
Select columns whose dtype is equal to one of the provided dtypes. |
|
Select columns that contain at least one null value, or a proportion of null values above a given threshold. |
|
Select columns that have an integer data type. |
|
Invert a selector. |
|
Normalize a selector, column name, or list of names into a |
|
Select columns that have a numeric data type. |
|
Select columns whose dtype is |
|
Select columns by name with a regular expression. |
|
Select the columns of a dataframe that are matched by the selector. |
|
Select columns that have a string data type. |