How would you code a merge that will keep only the
observations that have matches from both sets?
Answer Posted / san
data c;
merge data a(in=a)
dat b(in=b);
if a=1 and b=1;
by<common column>;
run;
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is proc sort?
How do dates work in sas?
what is the Population you used in your project, is it ITT or PP?
Explain the difference between nodup and nodupkey options?
what is change analysis in sas di ? : Sas-di
Describe 5 ways to do a “table lookup” in SAS?
What sas features do you use to check errors and data validation?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
What is the use of function Proc summary?
What is the use of %include statement?
what is SAS OPTIMIZATION?
how do the in= variables improve the capability of a merge? : Sas programming
Explain proc sort?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
What are the default statistics for means procedure?