BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I wrote code to calculate the proportion of the normal (0,1) distribution less than x from -2.5 and 0. Now I would like to print out the x value that is closest to the probability value = .10. How do I do this? After looking at the output the x value is -1.30 but I want to find this automatically and print. Any suggestions?

data one;
do x = -2.5 to 0 by .05;
probablity = probnorm(x);
difference = abs(.1-probability); *the smallest value of difference and its corresponding x value would be what I want to print out;
output;
end;

proc print data=one;
run;
2 REPLIES 2
deleted_user
Not applicable
I corrected the inconsistent spellings of probability, and added some code to the step.

Essentially, you hold a value which is the smallest and compare it to the difference.

If difference is lower than smallest then update smallest.

Otherwise it is larger and has started to increase again. So output the record at that point and stop the data step.

You now have one record with the smallest value and related X value.

If you don't like the column names, issue a rename option on the data statement.

Kind regards

David

Data ONE;
SMALLEST = 9999;
Do X = -2.5 To 0 By .05;
PROBABILITY = ProbNorm( X);
DIFFERENCE = ABS( .1 - PROBABILITY);
* the smallest value of difference and its corresponding
x value would be what I want to print out;
If DIFFERENCE < SMALLEST Then Do;
SMALLEST = DIFFERENCE;
XVALUE = X;
End;
Else Do;
Output;
Stop;
End;
End;
Run;
deleted_user
Not applicable
Thanks David, I really appreciate it.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 761 views
  • 0 likes
  • 1 in conversation