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 was the last computer book you purchased? Why?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
Mention the validation tools used in SAS?
describe about metadata object? : Sas-di
Explain what is the use of proc gplot?
how does sas handle missing values in assignment statements? : Sas programming
Explain data_null_?
What is the maximum length of the macro variable? : sas-macro
What is the sas data set? : sas-grid-administration
What are the differences between sum function and using “+” operator?
for report generation which one you used proc report or data_null_?
What is the role of administrative users? : sas-grid-administration
What are the data types does SAS contain?
In proc transpose and data step with arrays which one you pick?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5