Answer Posted / velppuula shathish
data Sd;
set ds nobs=x;
if _N_>=20;
RUN;
proc print data=sd;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is substr function?
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
What is the sas data set? : sas-grid-administration
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what are informats in sas? : Sas-administrator
how do you debug and test your sas programs? : Sas programming
What is data _null_?
Describe the function and untility of the most difficult SAS macro that you have written.
What is SAS? What are the functions does it performs?
what are the scrubbing procedures in sas? : Sas programming
What is the difference between %local and %global? : sas-macro
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What is slibref?
What is the difference between using drop = data set option in data statement and set statement?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...