Data Wrangling with Python Datatable - Row-wise Transformations
Link to Source data
datatable docs
Task: Get the difference between the maximum and minimum values per row for Value columns.
from datatable import dt, f, update
df = dt.Frame({'Ind': [1, 2, 3],
'Department': ['Electronics', 'Clothing...
datawrangler.hashnode.dev3 min read