how to display duplicated observations in a data using base
sas.
Answer Posted / pratik
By using Dopout option we can display duplicate observation.
Proc sort data=datasetname1 nodupkey dopout=datasetname2;
by varaible.
run;
proc print data=datasetname2;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What do the PUT and INPUT functions do?
What is the maximum length of the macro variable? : sas-macro
Explain data step in SAS
Describe the ways in which you can create macro variables?
which features do you use to check the data validations and errors? : Sas-administrator
what other sas products have you used and consider yourself proficient in using? : Sas programming
describe about metadata object? : Sas-di
Mention few capabilities of sas framework.
how to read the variables in sas? : Sas-administrator
Can you execute macro within another macro? : sas-macro
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
How do you add a number to a macro variable? : sas-macro
How is character variable converted into numeric variable and vice versa?
Explain translate function?
What is PDV?