How would you delete duplicate observations?
Answer Posted / vijay
There are several ways to do this. However the easliest
code-wise is to use PROC SORT. For example:
PROC SORT DATA=mydata NODUPKEY;
BY variable;
RUN;
Is This Answer Correct ? | 17 Yes | 7 No |
Post New Answer View All Answers
what is transformation in sas data integration? : Sas-di
Tell e how how dealt with..
Have you ever used the SAS Debugger?
what do the pad and dim functions do? : Sas programming
Compare sas with other data analytics tools.
How to limit decimal places for variable using proc means?
What function CATX syntax does?
What does PROC print, and PROC contents do?
explain the difference between proc means and proc summary?
Name types of category in which SAS Informats are placed?
what are _numeric_ and _character_ and what do they do? : Sas programming
What do the PUT and INPUT functions do?
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
How do you add a number to a macro variable? : sas-macro
Difference between informat and format?