Re: [R] calculation for standard normal cumulative distribution

2008-11-02 Thread John Sorkin
I suggest you issue the following command: ?pnorm which will get you to a manual page that will give you information about the following commands: dnorm(x, mean=0, sd=1, log = FALSE) pnorm(q, mean=0, sd=1, lower.tail = TRUE, log.p = FALSE) qnorm(p, mean=0, sd=1, lower.tail = TRUE, log.p =

Re: [R] calculation for standard normal cumulative distribution

2008-11-01 Thread Charles C. Berry
That's too easy. The posting guide is your friend. Especially the part about using help as in help('normal') which would reply: No documentation for 'normal' in specified packages and libraries: you could try '??normal' And indeed you could, which leads rather