I have two data sets with country names in common.
As you can see, both data sets have a two letter country code formated the same way.
After running this code: merged<- merge(aggdata, Trade, by="Group.1" , all.y = TRUE, all.x=TRUE)
Rather than having 2 rows with the same country code, I'd like them to be combine.
Thanks!