Data Wrangling with Python Datatable - Transformations Within a GroupBy
Link to Source data
Task: Group data by Date and Zip and get the ratio of Price to maximum Price per group.
from datatable import dt, f, update, by
df = dt.Frame( { "Date": ["2019-01-01", "2019-01-01",
"2019-01-01", "20...
datawrangler.hashnode.dev2 min read