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
What do you know about sas and what we do? : sas-grid-administration
How are numeric and character missing values represented internally?
Enlist the functions performed by sas.
Explain substr function?
What is the role of unrestrictive users? : sas-grid-administration
What is the difference between the proc sql and data step?
how does sas handle missing values in assignment statements? : Sas programming
What is run-group processing?
Mention how to limit decimal places for the variable using proc means?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
How do you delete duplicate observations in sas?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
what is snowflake schema? : Sas-di
Which date function advances a date, time or datetime value by a given interval?
What are the data types in sas?