Hi all,
I just want to know can we get non matching observations using joins.
Thanks&Regards
rawindarreddy
Do your mean SQL's join ?
Yes. you can do it .But I would like to use IN operator to get it.
The following pick up the records which is in b, not in a .
data a; set sashelp.class(keep=name obs=10); retain _dummy 10; run; data b; set sashelp.class; run; proc sql; create table not_matched as select b.* from b left join a on b.name eq a.name where a.name is missing ;quit;
Ksharp
Yes Rawinder, We can sure get non matching onservation from joins.
Please check the example.
data one;
input id suspect;
cards;
2 3
6 3
2 4
5 4
9 8
;
run;
data two;
input id suspect;
cards;
5 1
3 1
2 4
5 4
9 8
;
run;
proc sql;
select * from one full join two on one.id=two.id where one.id ne two.id;
quit;
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.