How would you code a merge that will keep only the
observations that have matches from both sets.
Answer Posted / pallavi
data three;
merge one(in=x) two(in=y);
by id;
if x and y;
run;
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
what is change analysis in sas di ? : Sas-di
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
for report generation which one you used proc report or data_null_?
What’s the difference between var b1 – b3 and var b1 — b3?
what is slowly changing dimension? : Sas-di
In ARRAY processing, what does the DIM function do?
what are _numeric_ and _character_ and what do they do? : Sas programming
what do the sas log messages "numeric values have been converted to character" mean? : Sas programming
Explain the difference between nodup and nodupkey options?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
Explain by-group processing?
If a variable contains only numbers, can it be a character data type?
What do the put and input function do?
Give e an example of..
What is slibref?