Using the output in Output 62.2.1 as an example, I would like to capture the value "3.0" where it says:
Value of Response at Maximum = 3.0
I have not found how to get at that specific bit of information. It does not matter to me whether it is in a table or a macro variable. Does anyone know how to do it?
something like this? The statistics you wanting to capture is stored in dataset kstest.
ods output kstest=kstest;
proc npar1way ...;
...
...
...
run;
ods output close;
data _null_; set kstest; call symputx('ValueAtMaximum',ValueAtMaximum); run;
%put ValueAtMaximum=&ValueAtMaximum;
See the article "ODS OUTPUT: Store any statistic created by any SAS procedure"
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.