BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Suppose φ is the probability density function of the standard normal distribution and Ф the cumulative distribution function. For any number c, how can I obtain φ(c) and Ф(c)? I tried to use

PDF('NORMAL',c<,0,1>) for φ(c)

and

CDF('NORMAL',c<,0,1>) for Ф(c)

but it didn't work.
1 REPLY 1
Bengt_SAS
SAS Employee
You're quite close to what you need:

[pre]data _null_;
c = .5;
x = pdf('NORMAL', c, 0, 1);
y = pdf('NORMAL', c);
put x= y=;
run;[/pre]

"<,p1, p2>" denotes optional parameters in the function declaration.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Discussion stats
  • 1 reply
  • 1017 views
  • 0 likes
  • 2 in conversation