dask dataframe looks like this:
A B C D
1 foo xx this
1 foo xx belongs
1 foo xx together
4 bar xx blubb
i want to groupy by columns A,B,C and join the strings from D with a blank between, to get
A B C D
1 foo xx this belongs together
4 bar xx blubb
i see how to do this with pandas:
df_grouped = df.groupby(['A','B','C'])['D'].agg(' '.join).reset_index()
how can this be achieved with dask?