ColumnsByTypeAll / Select Layer

Select columns by general data type categories. Similar to pandas select_dtypes() with broader type groups. Useful for:

  • Quick data type filtering
  • General data exploration
  • Type-based analysis
  • Bulk data processing
  • Feature type segregation
Table
0
0
Table

DataTypes

[, ...]

Container for type category selection. Enables selection of multiple type categories simultaneously.

Boolean

High-level data type categories for broader column selection

Boolean ~

All boolean/logical columns. Used for binary data and flags

String ~

All text-based columns including categorical and regular strings

Numeric ~

All number types (integers and floats of any precision)

UnsignedInteger ~

All unsigned integer types (uint8, uint16, uint32, uint64)

Integer ~

All integer types, both signed and unsigned

Float ~

All floating-point types (float32, float64)

Temporal ~

All time-related types (date, time, datetime, duration)

Date ~

All date-only columns without time components

Time ~

All time-only columns without date components