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 the scrubbing procedures in sas? : Sas programming
How do you specify the number of iterations and specific condition within a single do loop?
explain the use of % includes a statement in sas? : Sas-administrator
Which statement does not perform automatic conversions in comparisons?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
how to generate the test data in sas without input data? : Sas-administrator
Describe the function and untility of the most difficult SAS macro that you have written.
Explain proc sort?
What is substr function?
what is change analysis in sas di ? : Sas-di
what are sas bi dashboard components? : Sas-bi
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what is the use of proc contents and proc print in sas? : Sas-administrator
Give some examples where proc report’s defaults are same as proc print’s defaults?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro