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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 664 views
  • 0 likes
  • 2 in conversation