how to display duplicated observations in a data using base
sas.
Answer Posted / aravind rangaraj
two ways u can do ot.
1. proc sort with dupout option.
2. data step:
data nodups dups;
set sample;
by x;
if first. and last. then output nodups;
else output dups;
run;
proc print data=dups;
run;
Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Hi,by usining ptf how we have to combine (likr merge)10 datasets at a time in the oracle database(and write a macro code also)?Like this i have a douts a lot if you dont mind may please send one text mail for me(madhusudhanap16@gmail.com)?
What is the role of unrestrictive users? : sas-grid-administration
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
What are the features of base sas system?
Describe crosslist option in tables statement?
what is program data vector? : Sas-administrator
What versions of SAS have you used (on which platforms)?
what are some good sas programming practices for processing very large data sets? : Sas programming
What do the put and input function do?
AE datasets names? how many types?
Explain what is the use of proc gplot?
What is slibref?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
what is ae onset date n what is RDS
How do you use the do loop if you don’t know how many times you should execute the do loop?