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
Explain the purpose of substr functions in sas programming.
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
In sas, what are the areas that you are most interested in? : sas-grid-administration
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
Explain by-group processing?
List down the reasons for choosing sas over other data analytics tools.
How are numeric and character missing values represented internally?
Can you suggest us materials for sdtm mapping?
Name few SAS functions?
describe the interaction table in sas di? : Sas-di
what is business intelligence? : Sas-bi
Can you explain the process of calendar?
Are you sensitive to code walk-throughs peer review or QC review?
How will you generate test data with no input data?
What is the difference between INPUT and INFILE ?