How to write duplicate records into a separate dataset using
sort?
Answer Posted / vimal
PROC SORT DATA=data_a DUPOUT=dup_data
NODUPKEY
OUT=nodup_data;
BY x;
RUN;
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what has been your most common programming mistake? : Sas programming
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
what are the scrubbing procedures in sas? : Sas programming
What do the put and input function do?
How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What is the role of unrestrictive users? : sas-grid-administration
Give some ways by which you can define the variables to produce the summary report (using proc report)?
What is the difference between SAS functions and procedures?
What are the difficulties u faced while doing vital signs table or dataset?
How to specify variables to be processed by the freq procedure?
What are the data types does SAS contain?
What is the use of stop statement?
What is the good sas programming practices for processing large data sets?
Can you execute a macro within a macro? Describe. : sas-macro