How would you delete observations with duplicate keys?
Answer Posted / ganesh
we can delete the observation by using NODUP.
proc sort data=name nodup;
by varname;
run;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How does the internal authentication work in sas? : sas-grid-administration
what is metadata? : Sas-bi
What is the role of unrestrictive users? : sas-grid-administration
How we can call macros with in data step? : sas-macro
Name types of category in which SAS Informats are placed?
What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?
Mention the difference between ceil and floor functions in sas?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
why a stop statement is needed for the point= option on a set statement?
How is character variable converted into numeric variable and vice versa?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
How would you code a macro statement to produce information on the sas log? This statement can be coded anywhere? : sas-macro
Mention what is the difference between nodupkey and nodup options?
how sas deals with business intelligence? : Sas-bi
Explain the purpose of substr functions in sas programming.