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 / monika
Data test;
input a 8. @@;
datalines;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;
run;
Data Result;
Set test(firstobs=10 obs=20);
Run;
Proc print data = Result;
Run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is treatment emergent events and treatment emregent adverse event
List out some key concept of SAS
What is SAS informats?
What is the use of function Proc summary?
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
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
: and & modifiers.
Mention the difference between ceil and floor functions in sas?
What is SAS?
What does proc print, and proc contents are used for?
What is the function of output statement in a SAS Program?
What are the special input delimiters used in SAS?
What are the applications primarily used by business analyst? : Sas-bi
what is sas and what are the functions? : Sas-administrator
How would you invoke a macro? : sas-macro