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; 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1441 views
  • 3 likes
  • 3 in conversation