How would you code a merge that will keep only the
observations that have matches from both sets.
Answer Posted / kamudu
here we used simple answer ia
data merge;
merge(tables------);
by (same colum);
if e1 and e2 then
output;
keep-----;
run;
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
how many display types available in sas bi dashboard? : Sas-bi
how are numeric and character missing values represented internally? : Sas programming
What is SAS?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
what is the difference between unique key and primary key? : Sas-di
what r the job openings SAS for fresher graduates !
What is run-group processing?
Mention few capabilities of sas framework.
what are the benefits of data integration? : Sas-di
do you need to know if there are any missing values? : Sas programming
If a variable contains only numbers, can it be a character data type?
Mention what is PROC in SAS?
Explain data step in SAS
how can you create zero observation dataset? : Sas programming
What is proc sort?