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 is PROC in SAS?
Which command is used to save logs in the external file?
What is the difference between where and if statement?
Explain input and put function?
what cause the "error: connect:" and "error in the libname statement" when there weren't any such problems?
How do you convert basic cube to transaction cube and transaction cube to basic cube?
Explain what Proc glm does?
how do you want missing values handled? : Sas programming
what is operational data and operational system? : Sas-di
What do the SAS log messages "numeric values have been converted to character" mean?
What are the implications?
What are the functions used for character handling?
how can you import .csv file in to sas? : Sas programming
How can you limit the variables written to output dataset in data step?
Name few SAS functions?