0

I have such dataframe: enter image description here

I want to groupby data by id and date and create column with lists of point. enter image description here

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)
Dmitry
  • 35
  • 3
  • did you read this [post](https://stackoverflow.com/questions/26187759/parallelize-apply-after-pandas-groupby) seems to be what you want – Ben.T Oct 08 '21 at 18:16

0 Answers0