Hi, I need help coming up with logic for this problem. I have a dataset that looks like this:
ID Source
1 A
1 A
1 B
1 B
2 A
3 B
I want to only remove rows from source A IF that same row is also in source B. Otherwise I want to keep rows unique to source A and unique to source B. The output should look like this:
ID Source
1 B
1 B
2 A
3 B
Thank you