how to display duplicated observations in a data using base
sas.
Answer Posted / dilip
proc sort data=x out=y;
by v;
data m;
set y;
by v;
if first.v and last.v then delete;
run;
this is for extracting duplicate observations
from a dataset
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What sas features do you use to check errors and data validation?
Explain why double trailing @@ is used in input statement?
how does sas handle missing values in sort order? : Sas programming
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
for whom is sas data integration studio designed? : Sas-di
what is the effect of the options statement errors=1? : Sas programming
what is sas enterprise intelligence architecture? : Sas-bi
how do you want missing values handled? : Sas programming
What is the general format of function in sas? : sas-grid-administration
what is sas data set?
What is the purpose of trailing @ and @@? How do you use them?
describe about metadata object? : Sas-di
For clinical entire study how many tables will create approx?
What is the difference between %local and %global? : sas-macro
Mention some common errors that are usually committed in sas programming.