How to select columns by data type in Polars?
03:37 24 May 2022

In pandas we have the pandas.DataFrame.select_dtypes method that selects certain columns depending on the dtype. Is there a similar way to do such a thing in Polars?

python dataframe python-polars