Hi, I want to route the log generated by SAS IML to an external file. I have a loop to execute and I want to route the log of each loop to a different file. I have used proc printto procedure in combination with submit and endsubmit statement to execute the procedure inside SAS IML. However the result I got is empty log file.
The code looks like this:
proc iml;
do i=1 to 7;
submit i;
proc printto log="D:\SAS generated files\log &i.log" new;
run;
endsubmit;
end;
quit;
OK. I assume that you are using a built-in NLP routine (such as NLPNRA) to compute each optimization. The first argument to an NLP function is a return code (rc). So your call looks like this:
call nlpnra(rc, result, "ObjectiveFunc", InitGuess, options);
When the function returns, the value of the return code will be positive if the optimization converged and negative if the optimization did not converge. Therefore you can save the value of each return code and examine them later, together with the initial guess. Here's some pseudocode to get you started:
proc iml;
...
convergence = j(100,1,.);
initialGuess = j(100, numParams);
do i = 1 to 100;
/* set i_th guess from file or randomly or systematically */
initGuess = T( randfun(NumParams, "Normal") );
call nlpnra(rc, result, "ObjectiveFunc", InitGuess, options);
/* save the initial guess and the return code */
convergence[i] = rc;
initialGuess[i,] = initGuess;
end;
/* now analyze relationship between convergence and initial guess */
You might be interested in reading this article about how to choose a good starting guess for an optimization.
Could you give us some context and tell us what you are trying to accomplish? In other words, what are you trying to do statistically/numerically that you think will become easier if you can redirect the Log?
OK. I assume that you are using a built-in NLP routine (such as NLPNRA) to compute each optimization. The first argument to an NLP function is a return code (rc). So your call looks like this:
call nlpnra(rc, result, "ObjectiveFunc", InitGuess, options);
When the function returns, the value of the return code will be positive if the optimization converged and negative if the optimization did not converge. Therefore you can save the value of each return code and examine them later, together with the initial guess. Here's some pseudocode to get you started:
proc iml;
...
convergence = j(100,1,.);
initialGuess = j(100, numParams);
do i = 1 to 100;
/* set i_th guess from file or randomly or systematically */
initGuess = T( randfun(NumParams, "Normal") );
call nlpnra(rc, result, "ObjectiveFunc", InitGuess, options);
/* save the initial guess and the return code */
convergence[i] = rc;
initialGuess[i,] = initGuess;
end;
/* now analyze relationship between convergence and initial guess */
You might be interested in reading this article about how to choose a good starting guess for an optimization.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.