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.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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