How would you code the criteria to restrict the output to be
produced?
Answers were Sorted based on User's Feedback
Answer / dupe
Various datestep options, can be use to restrict number of
observations
obs=;
firstobs=;
point=obsnum
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / selvi
by if exp=codn; - restrict the output to be produced
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / harish
with out proc print statement we can block the out put.
| Is This Answer Correct ? | 1 Yes | 2 No |
what is data governance? : Sas-di
Mention few ways with which a “table lookup’ is done in sas programming.
How long can a macro variable be? A token? : sas-macro
what is the difference between proc means and proc tabulate?
What is the difference between nodupkey and nodup options?
why is sas considered self-documenting? : Sas programming
create macros---you have 365 number of data and you need to merge it throw the macros,,,,,, data file1; input a @@; cards; 1 2 3 4 ; run; data file2; input a @@; cards; 5 6 7 8 ; run; data file3; input a @@; cards; 9 10 11 12 ; run;data file4; input a @@; cards; 13 14 15 16 ; run;
What can be the size of largest dataset in SAS?
Give some examples where proc report’s defaults are same as proc print’s defaults?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What is a macro routine?
How would you keep from overlaying the a SAS set with its sorted version?