Jonas Hanfland
08/31/2020, 3:00 PMsome_task.map(df.groupby("id"))
But it gives me: KeyError: 'Column not found: 0'
Does anyone know if mapping over groups is supported and if yes, how? Thanks in advanceChris White
08/31/2020, 3:07 PMJonas Hanfland
08/31/2020, 3:19 PMemre
08/31/2020, 3:20 PMlist(df.groupby("id"))
instead. Even better, have a task return list(df.groupby("id"))
, and map over the output of said task.