I have a dataset with the following information:
> Column1 Column2 Sum
a b 50
b a 7
c a 1
d e 8
c a 2
I want to aggregate to get this result:
> Column1 Column2 Sum
a b 57
c a 3
d e 8
Because a-b
its the same that b-a
Any way to do this? Thanks