I want to groupby data by id and date and create column with lists of point.
Is there a way to parallelize the apply method?
I use the code below:
data_temp_gr = data_temp.groupby(['adid','date'])
data_temp_gr = data_temp_gr['point'].apply(list)
I want to groupby data by id and date and create column with lists of point.
Is there a way to parallelize the apply method?
I use the code below:
data_temp_gr = data_temp.groupby(['adid','date'])
data_temp_gr = data_temp_gr['point'].apply(list)