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
How we can call macros with in data step? : sas-macro
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
What do the sas log messages “numeric values have been converted to character” mean? What are the implications?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
Describe crosslist option in tables statement?
how does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
what has been your most common programming mistake? : Sas programming
Name few SAS functions?
Differentiate input and infile.
What is the purpose of trailing @ and @@? How do you use them?
How necessary is it to be creative in your work?
What is the difference between match merge and one to one merge?
Explain proc sort?
Difference between informat and format?