BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I'm running linear probability model, thus I need to show that all possible values of Y are between 0 and 1. How can I find the min and max of predicted values in proc iml?
2 REPLIES 2
_LB
Fluorite | Level 6 _LB
Fluorite | Level 6
Brentos;
Normally you can output the set within the proc function with the output out=p p=yhat (p is an arbitrary designation) statement with the predicted values by using the p=yhat . From there, you can transpose the set and use the functions min,max, etc...
See code below.

If there are more efficent methods I would be game to hear them. Hope this helps you.

data X1;
set p;
x=compress('x'||_n_);
run;

proc transpose data=X1 out=descstats;
id x;
var predicted;
run;


data descstats;
set descstats;

min1=min(of x1-x?);
max1=max(of x1-x?);
run;

proc print;
var min1 max1;
run;
deleted_user
Not applicable
Thanks a lot. It did the trick.

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
  • 1536 views
  • 0 likes
  • 2 in conversation