You have a data set of 100 observations,how can you
restrict the output so that the output has only data from
row no. 10 to row no. 20
Answer Posted / jonathan o&
data Subset;
set whatever;
if _N_ not in (10-20) then delete;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are all the reports you generated in your recent project?
What do you code to create a macro? : sas-macro
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Mention the validation tools used in SAS?
Describe the function and untility of the most difficult SAS macro that you have written.
what is sas and what are the functions? : Sas-administrator
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
why a stop statement is needed for the point= option on a set statement?
Mention the category in which sas informats are placed?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
Difference between sum function and using “+” operator?
What versions of SAS have you used (on which platforms)?
Explain what is SAS informats?
what is sas application server? : Sas-di