Hi all,
I have the following kind of data:
I need to compare the values among the observations with the same Owner_id and Name and leave only those with the highest value (others can be dropped). For example, the dataset should result as follows:
The dataset is really large and it's simply impossible to do all the comparisons manually. The only step I've done is I sorted the dataset according to the Owner_id and the Name. I don't know what to do next. Please, help me.
I have the following kind of data:
Code:
Owner_id Name Value "00091701" "ADFC-NewsApp-Mono" 3 "00091701" "ADFC-NewsApp-Mono" 1 "01org" "cloudeebus" 3 "01org" "cloudeebus" 4 "01org" "cloudeebus" 2
Code:
Owner_id Name Value "00091701" "ADFC-NewsApp-Mono" 3 "01org" "cloudeebus" 4
Comment