- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-05-2008 05:03 PM
(1619 views)
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.
PDF('NORMAL',c<,0,1>) for φ(c)
and
CDF('NORMAL',c<,0,1>) for Ф(c)
but it didn't work.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Let me give you an example.
data prob;
x=pdf('normal',1.64,0,1);
y=cdf('normal',1.96,0,1);
run;
You can find more details in SAS help.
data prob;
x=pdf('normal',1.64,0,1);
y=cdf('normal',1.96,0,1);
run;
You can find more details in SAS help.