BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
RobF
Quartz | Level 8

I'm working on a SAS program that runs a coordinate descent algorithm which repetitively processes & updates dataset variables inside a macro loop:

%macro test(dataset=, numvars=, numiter=, lambda=, alpha=);

%do i=1 %to &numiter;

     %do j=1 %to &numvars;

           data &dataset (keep=y x1-x&numvars);

           set &dataset end=end_data;

                array x[&numvars] x1-x&numvars;

                                             < ... Code for variable manipulations & calculations ...>

           run;

     %end;

%end;

%mend;

%test(dataset=&dataset, numvars=10, numiter=100, lambda=.1, alpha=1)

I wrote this code out of convenience, realizing that putting a data step inside the macro loop isn't terribly efficient since opening and closing the same dataset eats up CPU resources.

Is there a better way to code this algorithm that will save significant time when running?

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

In part, that depends on the calculations.  It is extremely likely you could recode along these lines:

data &dataset;

set &dataset end=end_data;

array x ...;

do _i_=1 to &numiter;

do _j_=1 to &numvars;

** calculate, possibly exactly as before;

end;

end;

run;

View solution in original post

1 REPLY 1
Astounding
PROC Star

In part, that depends on the calculations.  It is extremely likely you could recode along these lines:

data &dataset;

set &dataset end=end_data;

array x ...;

do _i_=1 to &numiter;

do _j_=1 to &numvars;

** calculate, possibly exactly as before;

end;

end;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1114 views
  • 1 like
  • 2 in conversation