how to display duplicated observations in a data using base
sas.
Answer Posted / ganesh k
data dset1;
set dset;
by var1;
if last.var1>1 then output;
run;
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
what are _numeric_ and _character_ and what do they do? : Sas programming
describe about physical data integration? : Sas-di
Give an example where SAS fails to convert character value to numeric value automatically?
What are the table names in oracle database...?
How to limit decimal places for the variable using proc means?
How do you use the do loop if you don’t know how many times you should execute the do loop?
What are the difference between ceil and floor functions in sas?
What is the difference between the proc sql and data step?
how do the in= variables improve the capability of a merge? : Sas programming
How can you limit the variables written to output dataset in data step?
How is character variable converted into numeric variable and vice versa?
What areas of SAS are you most interested in?
What is the difference between class statement and by statement in proc means?
what are the scrubbing procedures in sas? : Sas programming
How can you create a macro variable with in data step? : sas-macro