how to display duplicated observations in a data using base
sas.
Answer Posted / lakshmi
proc sort data=data1 out=data2 dupout=dup_data1 nodupkey;
by usubjid;
run;
the dataset dup_data1 has the duplicate observation.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is program data vector (pdv) and what are its functions?
What are SAS/ACCESS and SAS/CONNECT?
How can I remove header from output data set?
Did you used proc test? when?
What is the basic syntax of a sas program?
If a variable contains only numbers, can it be a character data type?
What would be the value of month at the end of data step execution and how many observations would be there?
What is the purpose of _character_ and _numeric_?
Explain data step in SAS
What is proc sort?
explain what is factor analysis? : Sas-administrator
What does P-value signify about the statistical data?
what are the considerations when picking a SAS/STAT procedure?
How to create list output for cross-tabulations in proc freq?
How to read an input file in sas?