Returns the inverse of the Normal CDF for the given probability.
It will return a sequence of values, if given a sequence of
probabilities. This is equivalent to R's qnorm function.
Options:
:mean (default 0)
:sd (default 1)
Returns:
a value x, where (cdf-normal x) = probability
See also:
pdf-normal, cdf-normal, and sample-normal
References:
http://incanter.org/docs/parallelcolt/api/cern/jet/stat/tdouble/Probability.html
http://en.wikipedia.org/wiki/Normal_distribution
http://en.wikipedia.org/wiki/Quantile
Example:
(quantile-normal 0.975)
(quantile-normal [0.025 0.975] :mean -2 :sd (sqrt 0.5))
Comments top
No comments for quantile-normal. Log in to add a comment.