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-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 save with the early bird rate—just $795!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1341 views
  • 0 likes
  • 1 in conversation