Skip to content
Advertisement

after a groupby create a new column with a list of unique values for another column of the groupes values

So i have a dataframe with two columns: artistID and genre:

JavaScript

And what I want to do is to group by the column artistID (so the resulting datafdrame has as many rows as artistID there are in this dataframe), and the second column of the new dataframe I want it to be like a list or an array or whatever it is convenient of all the unique genres to which each artistID has been taged. So I want the resultind dataframe to look like this:

JavaScript

How can I do this ?

I also must say, this dataframe is just an wxample, my real dataframe has almost 200.000 rows and 20.000 different artistID

Advertisement

Answer

Use Groupby.agg:

JavaScript

OR:

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