Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on August 7, 2024 12:38PM
Likes: 0
Replies: 1
I have 2 datasets, in one I have one column with duplicate IDs and in the other one i have the ID without duplicates, but i want to sum all the candies into the dataset where i don't have any duplicate, how can I do that?
Use Group recipe on the dataset with duplicates, group by the ID column and sum your candies. Then join the output dataset to the dataset without duplicates using the ID so you can add your aggregate column.