tell me about use of arrays in sas
Answer / vimal raj
SAS Array's main functionality is
when a same action has to be performed repeatedly for n number of similar variables, it is ideal to use array which will simplify the sas program and gives the efficient performance in running and also the look n feel is better
data readin;
set outdata;
array Q(20) Q1-Q20;
do i= 1 to 20;
if Q(i) = 6 then Q(i)= .;
end;
run;
| Is This Answer Correct ? | 4 Yes | 2 No |
What is the difference between class statement and by statement in proc means?
where are dashboard components are created and maintained? : Sas-bi
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
How long can a macro variable be? A token? : sas-macro
Difference between sum function and using “+” operator?
Define run-group processing?
what is broad cast agent? : Sas-bi
How to convert .xls file into CSV format?
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
Intern stastical programmer written test
Explain the purpose of substr functions in sas programming.
At compile time when a SAS data set is read, what items are created?