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
Explain append procedure?
Describe a time when you were really stuck on a problem and how you solved it?
What is the maximum length of the macro variable? : sas-macro
What do you know about sas data set?
Mention what is PROC in SAS?
What are the implications?
what do the pad and dim functions do? : Sas programming
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
How to create an external dataset with sas code?
What would you change about your job?
explain the key concept of sas? : Sas-administrator
What are symget and symput? : sas-macro
what is the difference between unique key and primary key? : Sas-di
how do the in= variables improve the capability of a merge? : Sas programming
why is sas considered self-documenting? : Sas programming