“Pandas Group von concat” Code-Antworten

Pandas Group von 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

Verkettungsketten mit Pandas Groupby verkettet

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

Ähnliche Antworten wie “Pandas Group von concat”

Fragen ähnlich wie “Pandas Group von concat”

Weitere verwandte Antworten zu “Pandas Group von concat” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen