Skip to content
Advertisement

Grouping and concatening values in Pandas dataframes

I found an answer to my question in another request on this site, however the answer provided doesn’t work for me so I’m asking in a different request. I will use the same data and show results I’m getting.

So basically, I have a dataframe that one column has repeated values that I want to group in a single row, and I want to concatenate the values of another column as the value of the combined rows.

Here’s the example:

JavaScript

The output is as expected:

JavaScript

This is what I want to get once I group on values for FIRST_NM and LAST_NM, and concatenate the values of PAGE_NUM:

JavaScript

The proposed solution, and it makes a lot of sense to me, is to use this:

JavaScript

However and unfortunately, this seems to have no effect at all, I’m getting the exact same results:

JavaScript

Anyone can help pointing out what I’m doing wrong?

Many thanks in advance!

JF

Advertisement

Answer

try via groupby() and agg():

JavaScript

If needed unique value then use:

JavaScript

Output of out:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement