“Pandas Group от concat” Ответ

Pandas Group от concat

In [124]:

df.groupby(['name','month'])['text'].apply(lambda x: ','.join(x)).reset_index()

Out[124]:
    name  month         text
0  name1     11       hej,du
1  name1     12        aj,oj
2  name2     11     fin,katt
3  name2     12  mycket,lite
Evil Elephant

Concatenate Strings с использованием Pandas Groupby

In[38]:
df.groupby(['name','month'])['text'].apply(','.join).reset_index()

Out[38]: 
    name  month         text
0  name1     11           du
1  name1     12        aj,oj
2  name2     11     fin,katt
3  name2     12  mycket,lite
Anxious Alligator

Ответы похожие на “Pandas Group от concat”

Вопросы похожие на “Pandas Group от concat”

Больше похожих ответов на “Pandas Group от concat” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования