Hello, I'm reading the advanced study guide and I got a question with regards to using multiple array to look up values. Below are the sample program:
data work.lookup1;
array Targets{1997:1999,12} _temporary_;
if _n_=1 then do i= 1 to 3;
set sasuser.ctargets;
array mnth{*} Jan--Dec;
do j=1 to dim(mnth);
targets{year,j}=mnth{j};
end;
end;
set sasuser.monthsum(keep=salemon revcargo monthno);
year=input(substr(salemon,4),4.);
Ctarget=targets{year,monthno};
format ctarget dollar15.2;
run;Just curious, what's the advantage of using array over simply merging the data sets? It seems to be this technique isn't very useful.
Do people actually use this technique in practice?
Yes it is used, notice this is a temporary array.
A temporary array is reading the dataset once and loading it into memory. Loading it into memory means the lookup can be faster than a standard merge. Merges require you sort both data sets, there's no sort required here.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.