Hi All,
I have the following data based on distance between the cities.
| Source | Destination | Distance |
| USA | UK | 1000 |
| USA | Spain | 200 |
| UK | USA | 1000 |
| Germany | Spain | 500 |
| Spain | USA | 200 |
I want to remove the duplicates where source and destination are same. For Example USA to UK will be same as UK to USA and hence the duplicate value needs to be removed.
Following is the desired output.
| Source | Destination | Distance |
| USA | UK | 1000 |
| USA | Spain | 200 |
| Germany | Spain | 500 |
data have;
infile cards expandtabs;
input Source $ Destination $ Distance;
cards;
USA UK 1000
USA Spain 200
UK USA 1000
Germany Spain 500
Spain USA 200
;
run;
data temp;
set have;
call sortc(Source,Destination);
run;
proc sort data=temp out=want nodupkey;
by Source Destination;
run;
proc print;run;
concatenate source and destination in alphabetical order and then pick max distance for each pair.
data have;
infile cards expandtabs;
input Source $ Destination $ Distance;
cards;
USA UK 1000
USA Spain 200
UK USA 1000
Germany Spain 500
Spain USA 200
;
run;
data temp;
set have;
call sortc(Source,Destination);
run;
proc sort data=temp out=want nodupkey;
by Source Destination;
run;
proc print;run;
Thanks for your response. This really solved my query.
Why not just take those where Source < Destination?
If there is only one obs, and Source > Destination?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.