Selectors#
Contains method to select columns in a dataframe. See the selectors section for further details.
Select all columns. |
|
Select columns that have a Date or Datetime data type. |
|
Select columns that have an 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 columns for which |
|
Select columns based on their name. |
|
Select columns that have a floating-point data type. |
|
Select columns by name with Unix shell style 'glob' pattern. |
|
Select columns that contain at least one null value. |
|
Select columns that have an integer data type. |
|
Invert a selector. |
|
Transform a selector, column name or list of column names into a selector. |
|
Select columns that have a numeric data type. |
|
Select columns by name with a regular expression. |
|
Apply a selector to a dataframe and return the resulting dataframe. |
|
Select columns that have a String data type. |