Data Wrangling with Python Datatable - Select Columns by Data Type
Link to Source data
Datatable docs
ltype
stypes
from datatable import dt, f
df = dt.Frame({'a': [1, 2, 1, 2, 1, 2],
'b': [True, False, True, False, True, False],
'c': [1.0, 2.0, 1.0, 2.0, 1.0, 2.0]})
df
| a ...
datawrangler.hashnode.dev2 min read