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 is the difference between nodup and nodupkey options? : Sas programming
Are you involved in writing the inferential analysis plan? Tables specfications?
What is the role of administrative users? : sas-grid-administration
In SAS explain which statement does not perform automatic conversions in comparisons?
Do you know the features of sas?
What is the difference between reading data from an external file and reading data from an existing data set?
explain what is data set in sas? : Sas-administrator
What is your favorite all time computer book? Why?
what are several options for creating reports in web report studio? : Sas-bi
what is ae onset date n what is RDS
what is broad cast agent? : Sas-bi
How do you test for missing values?
What are the 3 components in sas programming?
how does sas handle missing values in a merge? : Sas programming
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming