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 is operational data and operational system? : Sas-di
Briefly explain input and put function?
Is the physical structure of the data set in the same orientation as the report? Do you need to reshape the data sets? What method should you use to reshape the data–DATA steps,PROC TRANSPOSE,output data set from a procedure?
What are the default statistics that proc means produce?
Which date function advances a date, time or datetime value by a given interval?
Give e an example of..
What is the difference between the proc sql and data step?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
Name and describe few sas character functions that are used for data cleaning in brief.
What is run-group processing?
Mention sas system options to debug sas macros.
Where do you use proc means over proc freq?
What are the ways to do a “table lookup” in sas?
Hi, If anyone has base SAS certification dumps, please share.
how does sas handle missing values in assignment statements? : Sas programming