BookmarkSubscribeRSS Feed
rbarkand
Calcite | Level 5

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?

2 REPLIES 2
Miracle
Barite | Level 11

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; 

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 2080 views
  • 3 likes
  • 3 in conversation