Please write codes to merge two datasets and keep every
record in the first dataset.
Answer / reshma
proc sort data=dataA;
by commonvar;
run;
proc sort data=dataB;
by commonvar;
run;
data new;
merge dataA (in=a) dataB (in=b);
if a ;
by commonvar;
run;
Is This Answer Correct ? | 14 Yes | 0 No |
what is sas enterprise intelligence architecture? : Sas-bi
what are the types of interactive display types? : Sas-bi
how do the in= variables improve the capability of a merge? : Sas programming
what is chi-square test? have you used that?
1 Answers Accenture, Quintiles,
What is run-group processing?
How do you put a giraffe into the refrigerator?
what is sas application server? : Sas-di
Name few SAS functions?
Hi, I have one dataset like id date ex: id date 1 13 1 13Oct2011 2 14 2 14Oct2011 3 15 3 15Oct2011 --->this is the current date here i want date format like 13Oct2011,14Oct2011 how we can modify the numeric to date format plz answer.
define table lookup and how may ways it can be done...explian
SAS using companies in chennai
What is the difference between %local and %global? : sas-macro