how to display duplicated observations in a data using base
sas.
Answer Posted / manoj
Dupout Option
It is available on V9.1 onwards.
proc sort data=demo dupout=demo1 out=demo3 nodupkey;
by var1;
run;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
How to limit decimal places for the variable using proc means?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Differentiate between ceil and floor functions.
how can you put a "trace" in your program? : Sas programming
how does sas handle missing values in a merge? : Sas programming
how the sas basic syntax style described? : Sas-administrator
what do the pad and dim functions do? : Sas programming
How sas treats the dsd delimiters?
How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?
what is business intelligence? : Sas-bi
What are the statements in proc sql?
how does sas handle missing values in sort order? : Sas programming
What are the uses of sas?
Mention how to limit decimal places for the variable using proc means?
How do you delete duplicate observations in sas?